0s autopkgtest: DBG: testbed init 0s autopkgtest [07:31:28]: starting date and time: 2025-02-10 07:31:28+0000 0s autopkgtest [07:31:28]: git checkout: 325255d2 Merge branch 'pin-any-arch' into 'ubuntu/production' 0s autopkgtest [07:31:28]: host juju-7f2275-prod-proposed-migration-environment-15; command line: /home/ubuntu/autopkgtest/runner/autopkgtest --output-dir /tmp/autopkgtest-work.oh9g3vy4/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-wl-clipboard-rs --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-9.secgroup --name adt-plucky-s390x-rust-wl-clipboard-rs-20250210-073128-juju-7f2275-prod-proposed-migration-environment-15-46ebc846-bcf7-4b1c-93ae-3deeaa0576b7 --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 59s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest.4cJX46 59s autopkgtest: DBG: sending command to testbed: print-execute-command 59s autopkgtest: DBG: got reply from testbed: ok /tmp/autopkgtest-ssh.ex0l92xr/runcmd 59s autopkgtest: DBG: sending command to testbed: capabilities 59s autopkgtest: DBG: got reply from testbed: ok suggested-normal-user=ubuntu reboot revert isolation-machine revert-full-system root-on-testbed 59s autopkgtest: DBG: testbed capabilities: ['suggested-normal-user=ubuntu', 'reboot', 'revert', 'isolation-machine', 'revert-full-system', 'root-on-testbed', 'has_internet'] 59s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4cJX46'], kind short, sout raw, serr pipe, env [] 59s autopkgtest: DBG: testbed command exited with code 0 59s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/wrapper.sh /tmp/autopkgtest.4cJX46/wrapper.sh 59s autopkgtest: DBG: got reply from testbed: ok 59s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4cJX46/wrapper.sh'], kind short, sout raw, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest: DBG: testbed command ['dpkg', '--print-architecture'], kind short, sout pipe, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [07:32:28]: testbed dpkg architecture: s390x 60s autopkgtest: DBG: testbed command ['dpkg-query', '-W', '-f', '${Version}', 'apt'], kind short, sout pipe, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [07:32:28]: testbed apt version: 2.9.28 60s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v eatmydata'], kind short, sout pipe, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest: DBG: testbed has eatmydata 60s autopkgtest: DBG: testbed command ['mkdir', '-p', '/etc/apt/preferences.d'], kind short, sout raw, serr pipe, env [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [07:32:28]: @@@@@@@@@@@@@@@@@@@@ test bed setup 60s 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 [] 60s autopkgtest: DBG: testbed command exited with code 0 60s autopkgtest [07:32:28]: testbed release detected to be: None 60s 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 [] 61s autopkgtest: DBG: testbed command exited with code 0 61s 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 [] 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest: DBG: adding APT source: Types: deb deb-src 61s URIs: http://ftpmaster.internal/ubuntu/ 61s Suites: plucky-proposed 61s Components: main restricted universe multiverse 61s Signed-By: /usr/share/keyrings/ubuntu-archive-keyring.gpg 61s 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 [] 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest: DBG: adding APT preference to autopkgtest-zz-plucky-proposed-baseline.pref: 61s Package: * 61s Pin: release plucky-proposed 61s Pin-Priority: 500 61s 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 [] 61s autopkgtest: DBG: testbed command exited with code 0 61s autopkgtest [07:32:29]: updating testbed package index (apt update) 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', 'update'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 61s Get:1 http://ftpmaster.internal/ubuntu plucky-proposed InRelease [110 kB] 62s Hit:2 http://ftpmaster.internal/ubuntu plucky InRelease 62s Hit:3 http://ftpmaster.internal/ubuntu plucky-updates InRelease 62s Hit:4 http://ftpmaster.internal/ubuntu plucky-security InRelease 62s Get:5 http://ftpmaster.internal/ubuntu plucky-proposed/main Sources [47.4 kB] 62s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/universe Sources [814 kB] 62s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse Sources [15.6 kB] 62s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x Packages [58.7 kB] 62s Get:9 http://ftpmaster.internal/ubuntu plucky-proposed/universe s390x Packages [712 kB] 62s Get:10 http://ftpmaster.internal/ubuntu plucky-proposed/multiverse s390x Packages [15.2 kB] 62s Fetched 1773 kB in 1s (1719 kB/s) 63s Reading package lists... 63s autopkgtest: DBG: testbed command exited with code 0 63s autopkgtest: DBG: adding APT preference to autopkgtest-plucky-proposed.pref: 63s Package: * 63s Pin: release plucky-proposed 63s Pin-Priority: 100 63s 63s Package: src:rust-defaults:any src:libgit2:any src:rustc-1.84:any 63s Pin: release plucky-proposed 63s Pin-Priority: 995 63s 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 [] 63s autopkgtest: DBG: testbed command exited with code 0 63s 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.4cJX46/${d//\\//_}.stamp; done'], kind short, sout raw, serr pipe, env [] 63s autopkgtest: DBG: testbed command exited with code 0 63s 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'] 63s + lsb_release --codename --short 63s + RELEASE=plucky 63s + cat 63s + [ plucky != trusty ] 63s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y --allow-downgrades -o Dpkg::Options::=--force-confnew dist-upgrade 63s Reading package lists... 63s Building dependency tree... 63s Reading state information... 64s Calculating upgrade... 64s The following packages were automatically installed and are no longer required: 64s libnsl2 libpython3.12-minimal libpython3.12-stdlib libpython3.12t64 64s linux-headers-6.11.0-8 linux-headers-6.11.0-8-generic 64s linux-modules-6.11.0-8-generic linux-tools-6.11.0-8 64s linux-tools-6.11.0-8-generic 64s Use 'sudo apt autoremove' to remove them. 64s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 64s + rm /etc/apt/preferences.d/force-downgrade-to-release.pref 64s + /usr/lib/apt/apt-helper analyze-pattern ?true 64s + uname -r 64s + sed s/\./\\./g 64s + running_kernel_pattern=^linux-.*6\.12\.0-15-generic.* 64s + apt list ?obsolete 64s + + cut -d/ -f1 64s tail -n+2 64s + grep -v ^linux-.*6\.12\.0-15-generic.* 64s + true 64s + obsolete_pkgs= 64s + DEBIAN_FRONTEND=noninteractive eatmydata apt-get -y purge --autoremove 64s Reading package lists... 64s Building dependency tree... 64s Reading state information... 64s The following packages will be REMOVED: 64s libnsl2* libpython3.12-minimal* libpython3.12-stdlib* libpython3.12t64* 64s linux-headers-6.11.0-8* linux-headers-6.11.0-8-generic* 64s linux-modules-6.11.0-8-generic* linux-tools-6.11.0-8* 64s linux-tools-6.11.0-8-generic* 64s 0 upgraded, 0 newly installed, 9 to remove and 0 not upgraded. 64s After this operation, 167 MB disk space will be freed. 64s (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.) 64s Removing linux-tools-6.11.0-8-generic (6.11.0-8.8) ... 64s Removing linux-tools-6.11.0-8 (6.11.0-8.8) ... 64s Removing libpython3.12t64:s390x (3.12.9-1) ... 64s Removing libpython3.12-stdlib:s390x (3.12.9-1) ... 64s Removing libnsl2:s390x (1.3.0-3build3) ... 64s Removing libpython3.12-minimal:s390x (3.12.9-1) ... 64s Removing linux-headers-6.11.0-8-generic (6.11.0-8.8) ... 64s Removing linux-headers-6.11.0-8 (6.11.0-8.8) ... 65s Removing linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 65s Processing triggers for libc-bin (2.40-4ubuntu1) ... 65s (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.) 65s Purging configuration files for libpython3.12-minimal:s390x (3.12.9-1) ... 65s Purging configuration files for linux-modules-6.11.0-8-generic (6.11.0-8.8) ... 65s + grep -q trusty /etc/lsb-release 65s + [ ! -d /usr/share/doc/unattended-upgrades ] 65s + [ ! -d /usr/share/doc/lxd ] 65s + [ ! -d /usr/share/doc/lxd-client ] 65s + [ ! -d /usr/share/doc/snapd ] 65s + type iptables 65s + cat 65s + chmod 755 /etc/rc.local 65s + . /etc/rc.local 65s + iptables -w -t mangle -A FORWARD -p tcp --tcp-flags SYN,RST SYN -j TCPMSS --clamp-mss-to-pmtu 65s + iptables -A OUTPUT -d 10.255.255.1/32 -p tcp -j DROP 65s + iptables -A OUTPUT -d 10.255.255.2/32 -p tcp -j DROP 65s + uname -m 65s + [ s390x = ppc64le ] 66s + [ -d /run/systemd/system ] 66s + systemd-detect-virt --quiet --vm 66s + mkdir -p /etc/systemd/system/systemd-random-seed.service.d/ 66s + cat 66s + grep -q lz4 /etc/initramfs-tools/initramfs.conf 66s + echo COMPRESS=lz4 66s autopkgtest: DBG: testbed command exited with code 0 66s autopkgtest [07:32:34]: upgrading testbed (apt dist-upgrade and autopurge) 66s 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'] 66s Reading package lists... 66s Building dependency tree... 66s Reading state information... 66s Calculating upgrade...Starting pkgProblemResolver with broken count: 0 66s Starting 2 pkgProblemResolver with broken count: 0 66s Done 66s Entering ResolveByKeep 66s 66s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 66s autopkgtest: DBG: testbed command exited with code 0 66s 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'] 67s Reading package lists... 67s Building dependency tree... 67s Reading state information... 67s Starting pkgProblemResolver with broken count: 0 67s Starting 2 pkgProblemResolver with broken count: 0 67s Done 67s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 67s autopkgtest: DBG: testbed command exited with code 0 67s 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.4cJX46/${d//\\//_}.stamp; [ ! -d $d ] || [ `stat -c %Y $d` = `stat -c %Y $s` ]; done'], kind short, sout raw, serr raw, env [] 67s autopkgtest: DBG: testbed command exited with code 1 67s autopkgtest [07:32:35]: rebooting testbed after setup commands that affected boot 67s autopkgtest: DBG: sending command to testbed: reboot 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 84s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4cJX46'], kind short, sout raw, serr pipe, env [] 84s autopkgtest: DBG: testbed command exited with code 0 84s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4cJX46/autopkgtest-reboot 84s autopkgtest: DBG: got reply from testbed: ok 84s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4cJX46'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare 85s autopkgtest: DBG: got reply from testbed: ok 85s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 85s autopkgtest: DBG: testbed command exited with code 0 85s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest [07:32:54]: testbed running kernel: Linux 6.12.0-15-generic #15-Ubuntu SMP Tue Feb 4 15:05:57 UTC 2025 86s autopkgtest: DBG: testbed command ['sh', '-c', 'nproc; cat /proc/cpuinfo 2>/dev/null || true'], kind short, sout pipe, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4cJX46/testbed-packages"], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/testbed-packages /tmp/autopkgtest-work.oh9g3vy4/out/testbed-packages 86s autopkgtest: DBG: got reply from testbed: ok 86s autopkgtest: DBG: testbed supports reboot, creating /tmp/autopkgtest-reboot 86s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4cJX46'], kind short, sout raw, serr pipe, env [] 86s autopkgtest: DBG: testbed command exited with code 0 86s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot.sh /tmp/autopkgtest.4cJX46/autopkgtest-reboot 87s autopkgtest: DBG: got reply from testbed: ok 87s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot', '/tmp/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot', '/sbin/autopkgtest-reboot'], kind short, sout raw, serr pipe, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: testbed command ['mkdir', '-p', '/tmp/autopkgtest.4cJX46'], kind short, sout raw, serr pipe, env [] 87s autopkgtest: DBG: testbed command exited with code 0 87s autopkgtest: DBG: sending command to testbed: copydown /home/ubuntu/autopkgtest/lib/in-testbed/reboot-prepare.sh /tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare 87s autopkgtest: DBG: got reply from testbed: ok 87s autopkgtest: DBG: testbed command ['chmod', '-R', '0755', '--', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['ln', '-fns', '/tmp/autopkgtest.4cJX46/autopkgtest-reboot-prepare', '/tmp/autopkgtest-reboot-prepare'], kind short, sout raw, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['uname', '-srv'], kind short, sout pipe, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: Binaries: initialising 88s autopkgtest [07:32:56]: @@@@@@@@@@@@@@@@@@@@ apt-source rust-wl-clipboard-rs 88s autopkgtest: DBG: blame += rust-wl-clipboard-rs 88s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=[] 88s autopkgtest: DBG: testbed command ['apt-cache', 'showsrc', '--only-source', 'rust-wl-clipboard-rs'], kind short, sout pipe, serr pipe, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'policy', '^librust-wl-clipboard-rs-dev$'], kind short, sout pipe, serr raw, env [] 88s autopkgtest: DBG: testbed command exited with code 0 88s autopkgtest: DBG: testbed command ['apt-cache', 'show', 'librust-wl-clipboard-rs-dev=0.8.0-2'], kind short, sout pipe, serr raw, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest: DBG: install_deps: deps_new=[] 89s autopkgtest: DBG: testbed command ['sh', '-ec', 'command -v dpkg-source'], kind short, sout pipe, serr pipe, env [] 89s autopkgtest: DBG: testbed command exited with code 0 89s 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.4cJX46/build.XXX); cd $builddir; OUT=$(apt-get source -d -q --only-source rust-wl-clipboard-rs=0.8.0-2 2>&1) || RC=$?;if [ -n "$RC" ]; then if echo "$OUT" | grep -q "Unable to find a source package"; then exit 1; else exit $RC; fi;fi;echo "$OUT" | grep ^Get: || true;dpkg-source -x rust-wl-clipboard-rs_*.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'] 89s + cd / 89s + mktemp -d /tmp/autopkgtest.4cJX46/build.XXX 89s + builddir=/tmp/autopkgtest.4cJX46/build.9ba 89s + cd /tmp/autopkgtest.4cJX46/build.9ba 89s + apt-get source -d -q --only-source rust-wl-clipboard-rs=0.8.0-2 89s + OUT=Reading package lists... 89s NOTICE: 'rust-wl-clipboard-rs' packaging is maintained in the 'Git' version control system at: 89s https://salsa.debian.org/rust-team/debcargo-conf.git [src/wl-clipboard-rs] 89s Please use: 89s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/wl-clipboard-rs] 89s to retrieve the latest (possibly unreleased) updates to the package. 89s Need to get 40.2 kB of source archives. 89s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (dsc) [3639 B] 89s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (tar) [32.8 kB] 89s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (diff) [3764 B] 89s Fetched 40.2 kB in 0s (151 kB/s) 89s Download complete and in download only mode 89s + [ -n ] 89s + echo Reading package lists... 89s NOTICE: 'rust-wl-clipboard-rs' packaging is maintained in the 'Git' version control system at: 89s https://salsa.debian.org/rust-team/debcargo-conf.git [src/wl-clipboard-rs] 89s Please use: 89s git clone https://salsa.debian.org/rust-team/debcargo-conf.git [src/wl-clipboard-rs] 89s to retrieve the latest (possibly unreleased) updates to the package. 89s Need to get 40.2 kB of source archives. 89s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (dsc) [3639 B] 89s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (tar) [32.8 kB] 89s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (diff) [3764 B] 89s Fetched 40.2 kB in 0s (151 kB/s) 89s Download complete and in download only mode 89s + grep ^Get: 89s Get:1 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (dsc) [3639 B] 89s Get:2 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (tar) [32.8 kB] 89s Get:3 http://ftpmaster.internal/ubuntu plucky/universe rust-wl-clipboard-rs 0.8.0-2 (diff) [3764 B] 89s + dpkg-source -x rust-wl-clipboard-rs_0.8.0-2.dsc src 89s gpgv: Signature made Tue Jun 11 19:34:35 2024 UTC 89s gpgv: using RSA key 91BFBF4D6956BD5DF7B72D23DFE691AE331BA3DB 89s gpgv: Can't check signature: No public key 89s dpkg-source: warning: cannot verify inline signature for ./rust-wl-clipboard-rs_0.8.0-2.dsc: no acceptable signature found 89s + chmod -R a+rX . 89s + cd src/. 89s + pwd 89s + sed -n 1 {s/).*//; s/ (/\n/; p} debian/changelog 89s autopkgtest: DBG: testbed command exited with code 0 89s autopkgtest [07:32:57]: testing package rust-wl-clipboard-rs version 0.8.0-2 89s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/build.9ba/src/debian/ /tmp/autopkgtest-work.oh9g3vy4/out/pkg/debian/ 90s autopkgtest: DBG: got reply from testbed: ok 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name rust-wl-clipboard-rs:@ path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-wl-clipboard-rs:@'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:default'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:dlopen path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features dlopen" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:dlopen'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:native_lib path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features native_lib" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:native_lib'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev: path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest [07:32:58]: build not needed 90s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/build.9ba/src/ /tmp/autopkgtest-work.oh9g3vy4/out/tests-tree/ 90s autopkgtest: DBG: got reply from testbed: ok 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name rust-wl-clipboard-rs:@ path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --all-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=rust-wl-clipboard-rs:@'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:default path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:default'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:dlopen path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features dlopen" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:dlopen'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev:native_lib path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features native_lib" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:native_lib'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: processing dependency dh-cargo (>= 18) 90s autopkgtest: DBG: processing dependency librust-proptest-1+default-dev 90s autopkgtest: DBG: processing dependency librust-proptest-derive-0.4+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-0.31+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+default-dev 90s autopkgtest: DBG: processing dependency librust-wayland-protocols-wlr-0.2+server-dev 90s autopkgtest: DBG: processing dependency librust-wayland-server-0.31+default-dev 90s autopkgtest: DBG: processing dependency @ 90s autopkgtest: DBG: synthesised dependency librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: Test defined: name librust-wl-clipboard-rs-dev: path None command "/usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features" restrictions ['allow-stderr', 'skip-not-installable'] features ['test-name=librust-wl-clipboard-rs-dev:'] depends ['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest [07:32:58]: test rust-wl-clipboard-rs:@: preparing testbed 90s autopkgtest: DBG: testbed reset: modified=False, deps_installed=[], deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 90s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 90s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev 90s autopkgtest: DBG: can use apt-get on testbed: True 90s 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-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 91s Reading package lists... 91s Building dependency tree... 91s Reading state information... 91s Starting pkgProblemResolver with broken count: 0 91s Starting 2 pkgProblemResolver with broken count: 0 91s Done 91s The following NEW packages will be installed: 91s autoconf automake autopoint autotools-dev cargo cargo-1.84 cpp cpp-14 91s cpp-14-s390x-linux-gnu cpp-s390x-linux-gnu debhelper debugedit dh-autoreconf 91s dh-cargo dh-cargo-tools dh-strip-nondeterminism dwz gcc gcc-14 91s gcc-14-s390x-linux-gnu gcc-s390x-linux-gnu gettext intltool-debian 91s libarchive-zip-perl libasan8 libcc1-0 libdebhelper-perl libffi-dev 91s libfile-stripnondeterminism-perl libgcc-14-dev libgit2-1.9 libgomp1 libisl23 91s libitm1 libmpc3 libpkgconf3 librust-addr2line-dev librust-adler-dev 91s librust-ahash-dev librust-allocator-api2-dev librust-arbitrary-dev 91s librust-async-attributes-dev librust-async-channel-dev 91s librust-async-executor-dev librust-async-global-executor-dev 91s librust-async-io-dev librust-async-lock-dev librust-async-process-dev 91s librust-async-signal-dev librust-async-std-dev librust-async-task-dev 91s librust-atomic-waker-dev librust-autocfg-dev librust-backtrace-dev 91s librust-bit-set-dev librust-bit-vec-dev librust-bitflags-dev 91s librust-blobby-dev librust-block-buffer-dev librust-blocking-dev 91s librust-bytemuck-derive-dev librust-bytemuck-dev librust-byteorder-dev 91s librust-bytes-dev librust-cc-dev librust-cfg-aliases-dev librust-cfg-if-dev 91s librust-compiler-builtins+core-dev 91s librust-compiler-builtins+rustc-dep-of-std-dev librust-compiler-builtins-dev 91s librust-concurrent-queue-dev librust-const-oid-dev librust-const-random-dev 91s librust-const-random-macro-dev librust-cpp-demangle-dev 91s librust-crc32fast-dev librust-critical-section-dev 91s librust-crossbeam-deque-dev librust-crossbeam-epoch+std-dev 91s librust-crossbeam-epoch-dev librust-crossbeam-utils-dev librust-crunchy-dev 91s librust-crypto-common-dev librust-derive-arbitrary-dev 91s librust-derive-new-dev librust-digest-dev librust-dlib-dev 91s librust-downcast-rs-dev librust-either-dev librust-encoding-rs-dev 91s librust-equivalent-dev librust-erased-serde-dev librust-errno-dev 91s librust-event-listener-dev librust-event-listener-strategy-dev 91s librust-fallible-iterator-dev librust-fastrand-dev librust-fixedbitset-dev 91s librust-flate2-dev librust-fnv-dev librust-futures-core-dev 91s librust-futures-io-dev librust-futures-lite-dev librust-generic-array-dev 91s librust-getrandom-dev librust-gimli-dev librust-hashbrown-dev 91s librust-indexmap-dev librust-io-lifetimes-dev librust-itoa-dev 91s librust-jobserver-dev librust-kv-log-macro-dev librust-lazy-static-dev 91s librust-libc-dev librust-libloading-dev librust-libm-dev 91s librust-libz-sys-dev librust-linux-raw-sys-dev librust-lock-api-dev 91s librust-log-dev librust-memchr-dev librust-memmap2-dev librust-memoffset-dev 91s librust-minimal-lexical-dev librust-miniz-oxide-dev librust-mio-dev 91s librust-nix-dev librust-no-panic-dev librust-nom+std-dev librust-nom-dev 91s librust-num-traits-dev librust-object-dev librust-once-cell-dev 91s librust-os-pipe-dev librust-owning-ref-dev librust-parking-dev 91s librust-parking-lot-core-dev librust-parking-lot-dev librust-petgraph-dev 91s librust-pin-project-lite-dev librust-pin-utils-dev librust-pkg-config-dev 91s librust-polling-dev librust-portable-atomic-dev librust-ppv-lite86-dev 91s librust-proc-macro2-dev librust-proptest-derive-dev librust-proptest-dev 91s librust-quick-error-dev librust-quick-xml-dev librust-quote-dev 91s librust-rand-chacha-dev librust-rand-core+getrandom-dev 91s librust-rand-core+serde-dev librust-rand-core+std-dev librust-rand-core-dev 91s librust-rand-dev librust-rand-xorshift-dev librust-raw-window-handle-dev 91s librust-rayon-core-dev librust-rayon-dev librust-regex-syntax-dev 91s librust-rustc-demangle-dev librust-rustc-std-workspace-core-dev 91s librust-rustix-dev librust-rusty-fork+wait-timeout-dev 91s librust-rusty-fork-dev librust-ruzstd-dev librust-ryu-dev 91s librust-scoped-tls-dev librust-scopeguard-dev librust-serde-derive-dev 91s librust-serde-dev librust-serde-fmt-dev librust-serde-json-dev 91s librust-serde-test-dev librust-shlex-dev librust-signal-hook-registry-dev 91s librust-slab-dev librust-smallvec-dev librust-socket2-dev librust-spin-dev 91s librust-stable-deref-trait-dev librust-static-assertions-dev 91s librust-subtle-dev librust-sval-buffer-dev librust-sval-derive-dev 91s librust-sval-dev librust-sval-dynamic-dev librust-sval-fmt-dev 91s librust-sval-ref-dev librust-sval-serde-dev librust-syn-1-dev 91s librust-syn-dev librust-tempfile-dev librust-thiserror-1-dev 91s librust-thiserror-impl-1-dev librust-tiny-keccak-dev librust-tokio-dev 91s librust-tokio-macros-dev librust-tracing-attributes-dev 91s librust-tracing-core-dev librust-tracing-dev librust-tree-magic-db-dev 91s librust-tree-magic-mini-dev librust-twox-hash-dev librust-typed-arena-dev 91s librust-typenum-dev librust-unarray-dev librust-unicode-ident-dev 91s librust-valuable-derive-dev librust-valuable-dev librust-value-bag-dev 91s librust-value-bag-serde1-dev librust-value-bag-sval2-dev 91s librust-version-check-dev librust-wait-timeout-dev 91s librust-wayland-backend-dev librust-wayland-client-dev 91s librust-wayland-protocols-dev librust-wayland-protocols-wlr-dev 91s librust-wayland-scanner-dev librust-wayland-server-dev 91s librust-wayland-sys-dev librust-wl-clipboard-rs-dev 91s librust-zerocopy-derive-dev librust-zerocopy-dev librust-zeroize-derive-dev 91s librust-zeroize-dev libstd-rust-1.84 libstd-rust-1.84-dev libtool libubsan1 91s libwayland-bin libwayland-client0 libwayland-cursor0 libwayland-dev 91s libwayland-egl1 libwayland-server0 m4 pkgconf pkgconf-bin po-debconf rustc 91s rustc-1.84 zlib1g-dev 91s 0 upgraded, 246 newly installed, 0 to remove and 0 not upgraded. 91s Need to get 143 MB of archives. 91s After this operation, 582 MB of additional disk space will be used. 91s Get:1 http://ftpmaster.internal/ubuntu plucky/main s390x m4 s390x 1.4.19-5 [259 kB] 92s Get:2 http://ftpmaster.internal/ubuntu plucky/main s390x autoconf all 2.72-3 [382 kB] 92s Get:3 http://ftpmaster.internal/ubuntu plucky/main s390x autotools-dev all 20220109.1 [44.9 kB] 92s Get:4 http://ftpmaster.internal/ubuntu plucky/main s390x automake all 1:1.17-3 [572 kB] 92s Get:5 http://ftpmaster.internal/ubuntu plucky/main s390x autopoint all 0.23.1-1 [619 kB] 92s Get:6 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libgit2-1.9 s390x 1.9.0~ds-0ubuntu1 [601 kB] 92s Get:7 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [29.9 MB] 94s Get:8 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x libstd-rust-1.84-dev s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [47.9 MB] 96s Get:9 http://ftpmaster.internal/ubuntu plucky/main s390x libisl23 s390x 0.27-1 [704 kB] 96s Get:10 http://ftpmaster.internal/ubuntu plucky/main s390x libmpc3 s390x 1.3.1-1build2 [57.8 kB] 96s Get:11 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [9572 kB] 96s Get:12 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-14 s390x 14.2.0-16ubuntu1 [1032 B] 96s Get:13 http://ftpmaster.internal/ubuntu plucky/main s390x cpp-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [5452 B] 96s Get:14 http://ftpmaster.internal/ubuntu plucky/main s390x cpp s390x 4:14.1.0-2ubuntu1 [22.4 kB] 96s Get:15 http://ftpmaster.internal/ubuntu plucky/main s390x libcc1-0 s390x 14.2.0-16ubuntu1 [50.7 kB] 96s Get:16 http://ftpmaster.internal/ubuntu plucky/main s390x libgomp1 s390x 14.2.0-16ubuntu1 [151 kB] 96s Get:17 http://ftpmaster.internal/ubuntu plucky/main s390x libitm1 s390x 14.2.0-16ubuntu1 [30.9 kB] 96s Get:18 http://ftpmaster.internal/ubuntu plucky/main s390x libasan8 s390x 14.2.0-16ubuntu1 [2964 kB] 96s Get:19 http://ftpmaster.internal/ubuntu plucky/main s390x libubsan1 s390x 14.2.0-16ubuntu1 [1184 kB] 96s Get:20 http://ftpmaster.internal/ubuntu plucky/main s390x libgcc-14-dev s390x 14.2.0-16ubuntu1 [1037 kB] 96s Get:21 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14-s390x-linux-gnu s390x 14.2.0-16ubuntu1 [18.7 MB] 97s Get:22 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-14 s390x 14.2.0-16ubuntu1 [525 kB] 97s Get:23 http://ftpmaster.internal/ubuntu plucky/main s390x gcc-s390x-linux-gnu s390x 4:14.1.0-2ubuntu1 [1204 B] 97s Get:24 http://ftpmaster.internal/ubuntu plucky/main s390x gcc s390x 4:14.1.0-2ubuntu1 [4996 B] 97s Get:25 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [6414 kB] 97s Get:26 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo-1.84 s390x 1.84.0+dfsg0ubuntu1-0ubuntu1 [7497 kB] 97s Get:27 http://ftpmaster.internal/ubuntu plucky/main s390x libdebhelper-perl all 13.23ubuntu1 [95.1 kB] 97s Get:28 http://ftpmaster.internal/ubuntu plucky/main s390x libtool all 2.5.4-3build1 [168 kB] 97s Get:29 http://ftpmaster.internal/ubuntu plucky/main s390x dh-autoreconf all 20 [16.1 kB] 97s Get:30 http://ftpmaster.internal/ubuntu plucky/main s390x libarchive-zip-perl all 1.68-1 [90.2 kB] 97s Get:31 http://ftpmaster.internal/ubuntu plucky/main s390x libfile-stripnondeterminism-perl all 1.14.1-2 [20.3 kB] 97s Get:32 http://ftpmaster.internal/ubuntu plucky/main s390x dh-strip-nondeterminism all 1.14.1-2 [5064 B] 97s Get:33 http://ftpmaster.internal/ubuntu plucky/main s390x debugedit s390x 1:5.1-2 [50.1 kB] 97s Get:34 http://ftpmaster.internal/ubuntu plucky/main s390x dwz s390x 0.15-1build6 [122 kB] 97s Get:35 http://ftpmaster.internal/ubuntu plucky/main s390x gettext s390x 0.23.1-1 [1065 kB] 97s Get:36 http://ftpmaster.internal/ubuntu plucky/main s390x intltool-debian all 0.35.0+20060710.6 [23.2 kB] 97s Get:37 http://ftpmaster.internal/ubuntu plucky/main s390x po-debconf all 1.0.21+nmu1 [233 kB] 97s Get:38 http://ftpmaster.internal/ubuntu plucky/main s390x debhelper all 13.23ubuntu1 [895 kB] 97s Get:39 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x rustc s390x 1.84.0ubuntu1 [2830 B] 97s Get:40 http://ftpmaster.internal/ubuntu plucky-proposed/main s390x cargo s390x 1.84.0ubuntu1 [2240 B] 97s Get:41 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo-tools all 31ubuntu4 [5834 B] 97s Get:42 http://ftpmaster.internal/ubuntu plucky/main s390x dh-cargo all 31ubuntu4 [8668 B] 97s Get:43 http://ftpmaster.internal/ubuntu plucky/main s390x libpkgconf3 s390x 1.8.1-4 [31.2 kB] 97s Get:44 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-if-dev s390x 1.0.0-1 [10.5 kB] 97s Get:45 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cpp-demangle-dev s390x 0.4.0-1 [66.1 kB] 97s Get:46 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fallible-iterator-dev s390x 0.3.0-2 [20.3 kB] 97s Get:47 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unicode-ident-dev s390x 1.0.13-1 [38.5 kB] 97s Get:48 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proc-macro2-dev s390x 1.0.92-1 [46.1 kB] 97s Get:49 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quote-dev s390x 1.0.37-1 [29.5 kB] 97s Get:50 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-dev s390x 2.0.96-2 [227 kB] 97s Get:51 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-arbitrary-dev s390x 1.4.1-1 [13.5 kB] 97s Get:52 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-arbitrary-dev s390x 1.4.1-1 [36.9 kB] 97s Get:53 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-equivalent-dev s390x 1.0.1-1 [8240 B] 97s Get:54 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-critical-section-dev s390x 1.2.0-1 [21.0 kB] 97s Get:55 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-derive-dev s390x 1.0.217-1 [51.2 kB] 97s Get:56 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-dev s390x 1.0.217-1 [67.2 kB] 97s Get:57 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-portable-atomic-dev s390x 1.10.0-3 [128 kB] 97s Get:58 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-std-workspace-core-dev s390x 1.0.0-1 [3020 B] 97s Get:59 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libc-dev s390x 0.2.169-1 [382 kB] 97s Get:60 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-getrandom-dev s390x 0.2.15-1 [37.8 kB] 97s Get:61 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-smallvec-dev s390x 1.13.2-1 [35.5 kB] 97s Get:62 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-core-dev s390x 0.9.10-1 [32.6 kB] 97s Get:63 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-once-cell-dev s390x 1.20.2-1 [31.9 kB] 97s Get:64 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crunchy-dev s390x 0.2.2-1 [5340 B] 97s Get:65 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tiny-keccak-dev s390x 2.0.2-1 [20.9 kB] 97s Get:66 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-macro-dev s390x 0.1.16-2 [10.5 kB] 97s Get:67 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-random-dev s390x 0.1.17-2 [8590 B] 97s Get:68 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-version-check-dev s390x 0.9.5-1 [16.9 kB] 97s Get:69 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-byteorder-dev s390x 1.5.0-1 [22.4 kB] 97s Get:70 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-derive-dev s390x 0.7.34-1 [30.3 kB] 97s Get:71 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zerocopy-dev s390x 0.7.34-1 [117 kB] 97s Get:72 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ahash-dev all 0.8.11-9 [38.1 kB] 97s Get:73 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-allocator-api2-dev s390x 0.2.16-1 [54.8 kB] 97s Get:74 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins-dev s390x 0.1.139-1 [178 kB] 97s Get:75 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-either-dev s390x 1.13.0-1 [20.2 kB] 97s Get:76 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-utils-dev s390x 0.8.19-1 [41.1 kB] 97s Get:77 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch-dev s390x 0.9.18-1 [42.3 kB] 97s Get:78 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-epoch+std-dev s390x 0.9.18-1 [1128 B] 97s Get:79 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crossbeam-deque-dev s390x 0.8.5-1 [22.4 kB] 97s Get:80 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-core-dev s390x 1.12.1-1 [63.7 kB] 97s Get:81 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rayon-dev s390x 1.10.0-1 [149 kB] 97s Get:82 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-hashbrown-dev s390x 0.14.5-5 [110 kB] 97s Get:83 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-indexmap-dev s390x 2.7.0-1 [69.4 kB] 97s Get:84 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-stable-deref-trait-dev s390x 1.2.0-1 [9794 B] 97s Get:85 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-gimli-dev s390x 0.31.1-2 [216 kB] 97s Get:86 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memmap2-dev s390x 0.9.5-1 [31.6 kB] 97s Get:87 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crc32fast-dev s390x 1.4.2-1 [39.8 kB] 98s Get:88 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf-bin s390x 1.8.1-4 [21.5 kB] 98s Get:89 http://ftpmaster.internal/ubuntu plucky/main s390x pkgconf s390x 1.8.1-4 [16.7 kB] 98s Get:90 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pkg-config-dev s390x 0.3.31-1 [23.5 kB] 98s Get:91 http://ftpmaster.internal/ubuntu plucky/main s390x zlib1g-dev s390x 1:1.3.dfsg+really1.3.1-1ubuntu1 [898 kB] 98s Get:92 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libz-sys-dev s390x 1.1.20-1 [19.7 kB] 98s Get:93 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-adler-dev s390x 1.0.2-2 [15.3 kB] 98s Get:94 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-miniz-oxide-dev s390x 0.7.1-1 [51.5 kB] 98s Get:95 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-flate2-dev s390x 1.0.34-1 [94.5 kB] 98s Get:96 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-derive-dev s390x 2.6.1-2 [11.0 kB] 98s Get:97 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dev s390x 2.6.1-2 [28.0 kB] 98s Get:98 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-ref-dev s390x 2.6.1-1 [8942 B] 98s Get:99 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-erased-serde-dev s390x 0.3.31-1 [22.7 kB] 98s Get:100 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-fmt-dev all 1.0.3-4 [7202 B] 98s Get:101 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-no-panic-dev s390x 0.1.32-1 [14.6 kB] 98s Get:102 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-itoa-dev s390x 1.0.14-1 [13.5 kB] 98s Get:103 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ryu-dev s390x 1.0.19-1 [43.1 kB] 98s Get:104 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-json-dev s390x 1.0.133-1 [130 kB] 98s Get:105 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-serde-test-dev s390x 1.0.171-1 [20.6 kB] 98s Get:106 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-serde1-dev s390x 1.9.0-1 [7820 B] 98s Get:107 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-buffer-dev s390x 2.6.1-1 [16.8 kB] 98s Get:108 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-dynamic-dev s390x 2.6.1-1 [9542 B] 98s Get:109 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-fmt-dev s390x 2.6.1-1 [12.0 kB] 98s Get:110 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-sval-serde-dev s390x 2.6.1-1 [13.2 kB] 98s Get:111 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-sval2-dev s390x 1.9.0-1 [7862 B] 98s Get:112 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-value-bag-dev s390x 1.9.0-1 [37.6 kB] 98s Get:113 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-log-dev s390x 0.4.22-1 [43.0 kB] 98s Get:114 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memchr-dev s390x 2.7.4-1 [71.8 kB] 98s Get:115 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blobby-dev s390x 0.3.1-1 [11.3 kB] 98s Get:116 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typenum-dev s390x 1.17.0-2 [41.2 kB] 98s Get:117 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-derive-dev s390x 1.4.2-1 [12.7 kB] 98s Get:118 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-zeroize-dev s390x 1.8.1-1 [21.6 kB] 98s Get:119 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-generic-array-dev s390x 0.14.7-1 [16.9 kB] 98s Get:120 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-block-buffer-dev s390x 0.10.2-2 [12.2 kB] 98s Get:121 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-const-oid-dev s390x 0.9.6-1 [41.5 kB] 98s Get:122 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core-dev s390x 0.6.4-2 [23.8 kB] 98s Get:123 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+getrandom-dev s390x 0.6.4-2 [1054 B] 98s Get:124 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-crypto-common-dev s390x 0.1.6-1 [10.5 kB] 98s Get:125 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-subtle-dev s390x 2.6.1-1 [16.1 kB] 98s Get:126 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-digest-dev s390x 0.10.7-2 [20.9 kB] 98s Get:127 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ppv-lite86-dev s390x 0.2.20-1 [22.2 kB] 98s Get:128 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-chacha-dev s390x 0.3.1-2 [16.9 kB] 98s Get:129 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+serde-dev s390x 0.6.4-2 [1108 B] 98s Get:130 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-core+std-dev s390x 0.6.4-2 [1052 B] 98s Get:131 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-dev s390x 0.8.5-1 [77.5 kB] 98s Get:132 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-static-assertions-dev s390x 1.1.0-1 [19.0 kB] 98s Get:133 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-twox-hash-dev s390x 1.6.3-1 [21.6 kB] 98s Get:134 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-ruzstd-dev s390x 0.7.3-2 [57.7 kB] 98s Get:135 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-object-dev s390x 0.36.5-2 [259 kB] 98s Get:136 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustc-demangle-dev s390x 0.1.24-1 [28.9 kB] 98s Get:137 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-typed-arena-dev s390x 2.0.2-1 [13.9 kB] 98s Get:138 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-addr2line-dev s390x 0.24.2-2 [34.8 kB] 98s Get:139 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-syn-1-dev s390x 1.0.109-3 [188 kB] 98s Get:140 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-attributes-dev all 1.1.2-7 [7024 B] 98s Get:141 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-concurrent-queue-dev s390x 2.5.0-4 [23.9 kB] 98s Get:142 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-dev s390x 2.2.0-1 [11.6 kB] 98s Get:143 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-project-lite-dev s390x 0.2.13-1 [30.2 kB] 98s Get:144 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-dev all 5.4.0-3 [31.3 kB] 98s Get:145 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-event-listener-strategy-dev s390x 0.5.3-1 [13.1 kB] 98s Get:146 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-core-dev s390x 0.3.31-1 [16.9 kB] 98s Get:147 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-channel-dev all 2.3.1-9 [13.3 kB] 98s Get:148 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-task-dev all 4.7.1-4 [29.5 kB] 98s Get:149 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fastrand-dev s390x 2.1.1-1 [17.8 kB] 98s Get:150 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-io-dev s390x 0.3.31-1 [11.2 kB] 98s Get:151 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-futures-lite-dev s390x 2.3.0-2 [38.6 kB] 99s Get:152 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-autocfg-dev s390x 1.1.0-1 [15.2 kB] 99s Get:153 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-slab-dev s390x 0.4.9-1 [21.2 kB] 99s Get:154 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-executor-dev all 1.13.1-2 [18.8 kB] 99s Get:155 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-lock-dev all 3.4.0-5 [29.4 kB] 99s Get:156 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-derive-dev s390x 1.5.0-2 [18.7 kB] 99s Get:157 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytemuck-dev s390x 1.21.0-1 [48.9 kB] 99s Get:158 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bitflags-dev s390x 2.8.0-1 [43.5 kB] 99s Get:159 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+core-dev s390x 0.1.139-1 [1096 B] 99s Get:160 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-compiler-builtins+rustc-dep-of-std-dev s390x 0.1.139-1 [1106 B] 99s Get:161 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-errno-dev s390x 0.3.8-1 [13.0 kB] 99s Get:162 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-linux-raw-sys-dev s390x 0.4.14-1 [138 kB] 99s Get:163 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rustix-dev s390x 0.38.37-1 [272 kB] 99s Get:164 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-attributes-dev s390x 0.1.27-1 [33.3 kB] 99s Get:165 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-derive-dev s390x 0.1.0-1 [5942 B] 99s Get:166 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-valuable-dev s390x 0.1.0-4 [23.5 kB] 99s Get:167 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-core-dev s390x 0.1.32-1 [53.8 kB] 99s Get:168 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tracing-dev s390x 0.1.40-1 [69.5 kB] 99s Get:169 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-polling-dev s390x 3.4.0-1 [47.8 kB] 99s Get:170 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-io-dev s390x 2.3.3-4 [41.0 kB] 99s Get:171 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-atomic-waker-dev s390x 1.1.2-1 [14.3 kB] 99s Get:172 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-blocking-dev all 1.6.1-6 [17.7 kB] 99s Get:173 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-backtrace-dev s390x 0.3.74-3 [79.8 kB] 99s Get:174 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bytes-dev s390x 1.9.0-1 [59.0 kB] 99s Get:175 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-mio-dev s390x 1.0.2-3 [87.7 kB] 99s Get:176 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-owning-ref-dev s390x 0.4.1-1 [13.7 kB] 99s Get:177 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scopeguard-dev s390x 1.2.0-1 [13.3 kB] 99s Get:178 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lock-api-dev s390x 0.4.12-1 [22.9 kB] 99s Get:179 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-parking-lot-dev s390x 0.12.3-1 [38.7 kB] 99s Get:180 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-signal-hook-registry-dev s390x 1.4.0-1 [19.2 kB] 99s Get:181 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-socket2-dev s390x 0.5.8-1 [48.9 kB] 99s Get:182 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-macros-dev s390x 2.5.0-1 [14.3 kB] 99s Get:183 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tokio-dev s390x 1.43.0-1 [585 kB] 99s Get:184 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-global-executor-dev s390x 2.4.1-5 [14.6 kB] 99s Get:185 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-signal-dev s390x 0.2.10-1 [16.0 kB] 99s Get:186 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-process-dev all 2.3.0-2 [21.3 kB] 99s Get:187 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-kv-log-macro-dev all 1.0.8-5 [7572 B] 99s Get:188 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-pin-utils-dev s390x 0.1.0-1 [9340 B] 99s Get:189 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-async-std-dev all 1.13.0-4 [171 kB] 99s Get:190 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bit-vec-dev s390x 0.8.0-1 [25.2 kB] 99s Get:191 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-bit-set-dev s390x 0.8.0-1 [17.9 kB] 99s Get:192 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-jobserver-dev s390x 0.1.32-1 [29.1 kB] 99s Get:193 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-shlex-dev s390x 1.3.0-1 [20.1 kB] 99s Get:194 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cc-dev s390x 1.1.14-1 [73.6 kB] 99s Get:195 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-cfg-aliases-dev s390x 0.2.1-1 [8100 B] 99s Get:196 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-derive-new-dev s390x 0.5.8-1 [9008 B] 99s Get:197 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libloading-dev s390x 0.8.5-1 [29.2 kB] 99s Get:198 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-dlib-dev s390x 0.5.2-2 [7974 B] 99s Get:199 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-downcast-rs-dev s390x 1.2.0-1 [13.2 kB] 99s Get:200 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-encoding-rs-dev s390x 0.8.35-1 [572 kB] 99s Get:201 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fixedbitset-dev s390x 0.4.2-1 [17.2 kB] 99s Get:202 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-fnv-dev s390x 1.0.7-1 [12.8 kB] 99s Get:203 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-os-pipe-dev s390x 1.2.1-1 [12.7 kB] 99s Get:204 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-io-lifetimes-dev s390x 2.0.3-1 [24.2 kB] 99s Get:205 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-spin-dev s390x 0.9.8-4 [33.4 kB] 99s Get:206 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-lazy-static-dev s390x 1.5.0-1 [14.2 kB] 99s Get:207 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-libm-dev s390x 0.2.8-1 [101 kB] 100s Get:208 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-memoffset-dev s390x 0.8.0-1 [10.9 kB] 100s Get:209 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-minimal-lexical-dev s390x 0.2.1-2 [87.0 kB] 100s Get:210 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nix-dev s390x 0.29.0-2 [266 kB] 100s Get:211 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom-dev s390x 7.1.3-1 [93.9 kB] 100s Get:212 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-nom+std-dev s390x 7.1.3-1 [1084 B] 100s Get:213 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-num-traits-dev s390x 0.2.19-2 [46.2 kB] 100s Get:214 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-petgraph-dev s390x 0.6.4-1 [150 kB] 100s Get:215 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proptest-derive-dev s390x 0.4.0-1 [50.6 kB] 100s Get:216 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rand-xorshift-dev s390x 0.3.0-2 [10.9 kB] 100s Get:217 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-regex-syntax-dev s390x 0.8.5-1 [203 kB] 100s Get:218 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-error-dev s390x 2.0.1-1 [15.6 kB] 100s Get:219 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tempfile-dev s390x 3.15.0-1 [36.0 kB] 100s Get:220 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rusty-fork-dev s390x 0.3.0-1 [20.4 kB] 100s Get:221 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wait-timeout-dev s390x 0.2.0-1 [14.1 kB] 100s Get:222 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-rusty-fork+wait-timeout-dev s390x 0.3.0-1 [1136 B] 100s Get:223 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-unarray-dev s390x 0.1.4-1 [14.6 kB] 100s Get:224 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-proptest-dev s390x 1.6.0-1 [173 kB] 100s Get:225 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-quick-xml-dev s390x 0.36.1-2 [139 kB] 100s Get:226 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-raw-window-handle-dev s390x 0.5.2-1 [18.5 kB] 100s Get:227 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-scoped-tls-dev s390x 1.0.1-1 [10.0 kB] 100s Get:228 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-impl-1-dev s390x 1.0.69-1 [20.0 kB] 100s Get:229 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-thiserror-1-dev s390x 1.0.69-1 [25.6 kB] 100s Get:230 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tree-magic-db-dev s390x 3.0.0-1 [23.6 kB] 100s Get:231 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-tree-magic-mini-dev s390x 3.1.6-1 [16.9 kB] 100s Get:232 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-client0 s390x 1.23.1-1 [27.8 kB] 100s Get:233 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-server0 s390x 1.23.1-1 [36.8 kB] 100s Get:234 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-cursor0 s390x 1.23.1-1 [11.5 kB] 100s Get:235 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-egl1 s390x 1.23.1-1 [5654 B] 100s Get:236 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-bin s390x 1.23.1-1 [21.3 kB] 100s Get:237 http://ftpmaster.internal/ubuntu plucky/main s390x libffi-dev s390x 3.4.6-1build1 [58.8 kB] 100s Get:238 http://ftpmaster.internal/ubuntu plucky/main s390x libwayland-dev s390x 1.23.1-1 [74.4 kB] 100s Get:239 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-sys-dev s390x 0.31.6-1 [11.4 kB] 100s Get:240 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-backend-dev s390x 0.3.8-1 [60.5 kB] 100s Get:241 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-scanner-dev s390x 0.31.6-1 [29.7 kB] 100s Get:242 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-client-dev s390x 0.31.2-2 [55.1 kB] 100s Get:243 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-server-dev s390x 0.31.1-2 [49.1 kB] 100s Get:244 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-protocols-dev s390x 0.31.2-1 [104 kB] 100s Get:245 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wayland-protocols-wlr-dev s390x 0.2.0-2 [25.2 kB] 100s Get:246 http://ftpmaster.internal/ubuntu plucky/universe s390x librust-wl-clipboard-rs-dev s390x 0.8.0-2 [30.7 kB] 101s Fetched 143 MB in 9s (16.3 MB/s) 101s Selecting previously unselected package m4. 101s (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.) 101s Preparing to unpack .../000-m4_1.4.19-5_s390x.deb ... 101s Unpacking m4 (1.4.19-5) ... 101s Selecting previously unselected package autoconf. 101s Preparing to unpack .../001-autoconf_2.72-3_all.deb ... 101s Unpacking autoconf (2.72-3) ... 101s Selecting previously unselected package autotools-dev. 101s Preparing to unpack .../002-autotools-dev_20220109.1_all.deb ... 101s Unpacking autotools-dev (20220109.1) ... 101s Selecting previously unselected package automake. 101s Preparing to unpack .../003-automake_1%3a1.17-3_all.deb ... 101s Unpacking automake (1:1.17-3) ... 101s Selecting previously unselected package autopoint. 101s Preparing to unpack .../004-autopoint_0.23.1-1_all.deb ... 101s Unpacking autopoint (0.23.1-1) ... 101s Selecting previously unselected package libgit2-1.9:s390x. 101s Preparing to unpack .../005-libgit2-1.9_1.9.0~ds-0ubuntu1_s390x.deb ... 101s Unpacking libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 101s Selecting previously unselected package libstd-rust-1.84:s390x. 101s Preparing to unpack .../006-libstd-rust-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 101s Unpacking libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 101s Selecting previously unselected package libstd-rust-1.84-dev:s390x. 101s Preparing to unpack .../007-libstd-rust-1.84-dev_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 101s Unpacking libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 102s Selecting previously unselected package libisl23:s390x. 102s Preparing to unpack .../008-libisl23_0.27-1_s390x.deb ... 102s Unpacking libisl23:s390x (0.27-1) ... 102s Selecting previously unselected package libmpc3:s390x. 102s Preparing to unpack .../009-libmpc3_1.3.1-1build2_s390x.deb ... 102s Unpacking libmpc3:s390x (1.3.1-1build2) ... 102s Selecting previously unselected package cpp-14-s390x-linux-gnu. 102s Preparing to unpack .../010-cpp-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package cpp-14. 102s Preparing to unpack .../011-cpp-14_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking cpp-14 (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package cpp-s390x-linux-gnu. 102s Preparing to unpack .../012-cpp-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 102s Unpacking cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 102s Selecting previously unselected package cpp. 102s Preparing to unpack .../013-cpp_4%3a14.1.0-2ubuntu1_s390x.deb ... 102s Unpacking cpp (4:14.1.0-2ubuntu1) ... 102s Selecting previously unselected package libcc1-0:s390x. 102s Preparing to unpack .../014-libcc1-0_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libcc1-0:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package libgomp1:s390x. 102s Preparing to unpack .../015-libgomp1_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libgomp1:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package libitm1:s390x. 102s Preparing to unpack .../016-libitm1_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libitm1:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package libasan8:s390x. 102s Preparing to unpack .../017-libasan8_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libasan8:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package libubsan1:s390x. 102s Preparing to unpack .../018-libubsan1_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libubsan1:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package libgcc-14-dev:s390x. 102s Preparing to unpack .../019-libgcc-14-dev_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 102s Selecting previously unselected package gcc-14-s390x-linux-gnu. 102s Preparing to unpack .../020-gcc-14-s390x-linux-gnu_14.2.0-16ubuntu1_s390x.deb ... 102s Unpacking gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 103s Selecting previously unselected package gcc-14. 103s Preparing to unpack .../021-gcc-14_14.2.0-16ubuntu1_s390x.deb ... 103s Unpacking gcc-14 (14.2.0-16ubuntu1) ... 103s Selecting previously unselected package gcc-s390x-linux-gnu. 103s Preparing to unpack .../022-gcc-s390x-linux-gnu_4%3a14.1.0-2ubuntu1_s390x.deb ... 103s Unpacking gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 103s Selecting previously unselected package gcc. 103s Preparing to unpack .../023-gcc_4%3a14.1.0-2ubuntu1_s390x.deb ... 103s Unpacking gcc (4:14.1.0-2ubuntu1) ... 103s Selecting previously unselected package rustc-1.84. 103s Preparing to unpack .../024-rustc-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 103s Unpacking rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 103s Selecting previously unselected package cargo-1.84. 103s Preparing to unpack .../025-cargo-1.84_1.84.0+dfsg0ubuntu1-0ubuntu1_s390x.deb ... 103s Unpacking cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 103s Selecting previously unselected package libdebhelper-perl. 103s Preparing to unpack .../026-libdebhelper-perl_13.23ubuntu1_all.deb ... 103s Unpacking libdebhelper-perl (13.23ubuntu1) ... 103s Selecting previously unselected package libtool. 103s Preparing to unpack .../027-libtool_2.5.4-3build1_all.deb ... 103s Unpacking libtool (2.5.4-3build1) ... 103s Selecting previously unselected package dh-autoreconf. 103s Preparing to unpack .../028-dh-autoreconf_20_all.deb ... 103s Unpacking dh-autoreconf (20) ... 103s Selecting previously unselected package libarchive-zip-perl. 103s Preparing to unpack .../029-libarchive-zip-perl_1.68-1_all.deb ... 103s Unpacking libarchive-zip-perl (1.68-1) ... 103s Selecting previously unselected package libfile-stripnondeterminism-perl. 103s Preparing to unpack .../030-libfile-stripnondeterminism-perl_1.14.1-2_all.deb ... 103s Unpacking libfile-stripnondeterminism-perl (1.14.1-2) ... 103s Selecting previously unselected package dh-strip-nondeterminism. 103s Preparing to unpack .../031-dh-strip-nondeterminism_1.14.1-2_all.deb ... 103s Unpacking dh-strip-nondeterminism (1.14.1-2) ... 103s Selecting previously unselected package debugedit. 103s Preparing to unpack .../032-debugedit_1%3a5.1-2_s390x.deb ... 103s Unpacking debugedit (1:5.1-2) ... 103s Selecting previously unselected package dwz. 103s Preparing to unpack .../033-dwz_0.15-1build6_s390x.deb ... 103s Unpacking dwz (0.15-1build6) ... 103s Selecting previously unselected package gettext. 103s Preparing to unpack .../034-gettext_0.23.1-1_s390x.deb ... 103s Unpacking gettext (0.23.1-1) ... 103s Selecting previously unselected package intltool-debian. 103s Preparing to unpack .../035-intltool-debian_0.35.0+20060710.6_all.deb ... 103s Unpacking intltool-debian (0.35.0+20060710.6) ... 103s Selecting previously unselected package po-debconf. 103s Preparing to unpack .../036-po-debconf_1.0.21+nmu1_all.deb ... 103s Unpacking po-debconf (1.0.21+nmu1) ... 103s Selecting previously unselected package debhelper. 103s Preparing to unpack .../037-debhelper_13.23ubuntu1_all.deb ... 103s Unpacking debhelper (13.23ubuntu1) ... 103s Selecting previously unselected package rustc. 103s Preparing to unpack .../038-rustc_1.84.0ubuntu1_s390x.deb ... 103s Unpacking rustc (1.84.0ubuntu1) ... 103s Selecting previously unselected package cargo. 103s Preparing to unpack .../039-cargo_1.84.0ubuntu1_s390x.deb ... 103s Unpacking cargo (1.84.0ubuntu1) ... 103s Selecting previously unselected package dh-cargo-tools. 103s Preparing to unpack .../040-dh-cargo-tools_31ubuntu4_all.deb ... 103s Unpacking dh-cargo-tools (31ubuntu4) ... 103s Selecting previously unselected package dh-cargo. 103s Preparing to unpack .../041-dh-cargo_31ubuntu4_all.deb ... 103s Unpacking dh-cargo (31ubuntu4) ... 103s Selecting previously unselected package libpkgconf3:s390x. 103s Preparing to unpack .../042-libpkgconf3_1.8.1-4_s390x.deb ... 103s Unpacking libpkgconf3:s390x (1.8.1-4) ... 103s Selecting previously unselected package librust-cfg-if-dev:s390x. 103s Preparing to unpack .../043-librust-cfg-if-dev_1.0.0-1_s390x.deb ... 103s Unpacking librust-cfg-if-dev:s390x (1.0.0-1) ... 103s Selecting previously unselected package librust-cpp-demangle-dev:s390x. 103s Preparing to unpack .../044-librust-cpp-demangle-dev_0.4.0-1_s390x.deb ... 103s Unpacking librust-cpp-demangle-dev:s390x (0.4.0-1) ... 103s Selecting previously unselected package librust-fallible-iterator-dev:s390x. 103s Preparing to unpack .../045-librust-fallible-iterator-dev_0.3.0-2_s390x.deb ... 103s Unpacking librust-fallible-iterator-dev:s390x (0.3.0-2) ... 103s Selecting previously unselected package librust-unicode-ident-dev:s390x. 103s Preparing to unpack .../046-librust-unicode-ident-dev_1.0.13-1_s390x.deb ... 103s Unpacking librust-unicode-ident-dev:s390x (1.0.13-1) ... 103s Selecting previously unselected package librust-proc-macro2-dev:s390x. 103s Preparing to unpack .../047-librust-proc-macro2-dev_1.0.92-1_s390x.deb ... 103s Unpacking librust-proc-macro2-dev:s390x (1.0.92-1) ... 103s Selecting previously unselected package librust-quote-dev:s390x. 103s Preparing to unpack .../048-librust-quote-dev_1.0.37-1_s390x.deb ... 103s Unpacking librust-quote-dev:s390x (1.0.37-1) ... 103s Selecting previously unselected package librust-syn-dev:s390x. 103s Preparing to unpack .../049-librust-syn-dev_2.0.96-2_s390x.deb ... 103s Unpacking librust-syn-dev:s390x (2.0.96-2) ... 103s Selecting previously unselected package librust-derive-arbitrary-dev:s390x. 103s Preparing to unpack .../050-librust-derive-arbitrary-dev_1.4.1-1_s390x.deb ... 103s Unpacking librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 103s Selecting previously unselected package librust-arbitrary-dev:s390x. 103s Preparing to unpack .../051-librust-arbitrary-dev_1.4.1-1_s390x.deb ... 103s Unpacking librust-arbitrary-dev:s390x (1.4.1-1) ... 103s Selecting previously unselected package librust-equivalent-dev:s390x. 103s Preparing to unpack .../052-librust-equivalent-dev_1.0.1-1_s390x.deb ... 103s Unpacking librust-equivalent-dev:s390x (1.0.1-1) ... 103s Selecting previously unselected package librust-critical-section-dev:s390x. 103s Preparing to unpack .../053-librust-critical-section-dev_1.2.0-1_s390x.deb ... 103s Unpacking librust-critical-section-dev:s390x (1.2.0-1) ... 103s Selecting previously unselected package librust-serde-derive-dev:s390x. 103s Preparing to unpack .../054-librust-serde-derive-dev_1.0.217-1_s390x.deb ... 103s Unpacking librust-serde-derive-dev:s390x (1.0.217-1) ... 103s Selecting previously unselected package librust-serde-dev:s390x. 103s Preparing to unpack .../055-librust-serde-dev_1.0.217-1_s390x.deb ... 103s Unpacking librust-serde-dev:s390x (1.0.217-1) ... 103s Selecting previously unselected package librust-portable-atomic-dev:s390x. 103s Preparing to unpack .../056-librust-portable-atomic-dev_1.10.0-3_s390x.deb ... 103s Unpacking librust-portable-atomic-dev:s390x (1.10.0-3) ... 103s Selecting previously unselected package librust-rustc-std-workspace-core-dev:s390x. 103s Preparing to unpack .../057-librust-rustc-std-workspace-core-dev_1.0.0-1_s390x.deb ... 103s Unpacking librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 103s Selecting previously unselected package librust-libc-dev:s390x. 103s Preparing to unpack .../058-librust-libc-dev_0.2.169-1_s390x.deb ... 103s Unpacking librust-libc-dev:s390x (0.2.169-1) ... 103s Selecting previously unselected package librust-getrandom-dev:s390x. 103s Preparing to unpack .../059-librust-getrandom-dev_0.2.15-1_s390x.deb ... 103s Unpacking librust-getrandom-dev:s390x (0.2.15-1) ... 103s Selecting previously unselected package librust-smallvec-dev:s390x. 103s Preparing to unpack .../060-librust-smallvec-dev_1.13.2-1_s390x.deb ... 103s Unpacking librust-smallvec-dev:s390x (1.13.2-1) ... 103s Selecting previously unselected package librust-parking-lot-core-dev:s390x. 103s Preparing to unpack .../061-librust-parking-lot-core-dev_0.9.10-1_s390x.deb ... 103s Unpacking librust-parking-lot-core-dev:s390x (0.9.10-1) ... 103s Selecting previously unselected package librust-once-cell-dev:s390x. 103s Preparing to unpack .../062-librust-once-cell-dev_1.20.2-1_s390x.deb ... 103s Unpacking librust-once-cell-dev:s390x (1.20.2-1) ... 103s Selecting previously unselected package librust-crunchy-dev:s390x. 103s Preparing to unpack .../063-librust-crunchy-dev_0.2.2-1_s390x.deb ... 103s Unpacking librust-crunchy-dev:s390x (0.2.2-1) ... 103s Selecting previously unselected package librust-tiny-keccak-dev:s390x. 103s Preparing to unpack .../064-librust-tiny-keccak-dev_2.0.2-1_s390x.deb ... 103s Unpacking librust-tiny-keccak-dev:s390x (2.0.2-1) ... 103s Selecting previously unselected package librust-const-random-macro-dev:s390x. 103s Preparing to unpack .../065-librust-const-random-macro-dev_0.1.16-2_s390x.deb ... 103s Unpacking librust-const-random-macro-dev:s390x (0.1.16-2) ... 103s Selecting previously unselected package librust-const-random-dev:s390x. 103s Preparing to unpack .../066-librust-const-random-dev_0.1.17-2_s390x.deb ... 103s Unpacking librust-const-random-dev:s390x (0.1.17-2) ... 103s Selecting previously unselected package librust-version-check-dev:s390x. 103s Preparing to unpack .../067-librust-version-check-dev_0.9.5-1_s390x.deb ... 103s Unpacking librust-version-check-dev:s390x (0.9.5-1) ... 103s Selecting previously unselected package librust-byteorder-dev:s390x. 103s Preparing to unpack .../068-librust-byteorder-dev_1.5.0-1_s390x.deb ... 103s Unpacking librust-byteorder-dev:s390x (1.5.0-1) ... 103s Selecting previously unselected package librust-zerocopy-derive-dev:s390x. 103s Preparing to unpack .../069-librust-zerocopy-derive-dev_0.7.34-1_s390x.deb ... 103s Unpacking librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 103s Selecting previously unselected package librust-zerocopy-dev:s390x. 103s Preparing to unpack .../070-librust-zerocopy-dev_0.7.34-1_s390x.deb ... 103s Unpacking librust-zerocopy-dev:s390x (0.7.34-1) ... 103s Selecting previously unselected package librust-ahash-dev. 103s Preparing to unpack .../071-librust-ahash-dev_0.8.11-9_all.deb ... 103s Unpacking librust-ahash-dev (0.8.11-9) ... 103s Selecting previously unselected package librust-allocator-api2-dev:s390x. 103s Preparing to unpack .../072-librust-allocator-api2-dev_0.2.16-1_s390x.deb ... 103s Unpacking librust-allocator-api2-dev:s390x (0.2.16-1) ... 103s Selecting previously unselected package librust-compiler-builtins-dev:s390x. 103s Preparing to unpack .../073-librust-compiler-builtins-dev_0.1.139-1_s390x.deb ... 103s Unpacking librust-compiler-builtins-dev:s390x (0.1.139-1) ... 103s Selecting previously unselected package librust-either-dev:s390x. 103s Preparing to unpack .../074-librust-either-dev_1.13.0-1_s390x.deb ... 103s Unpacking librust-either-dev:s390x (1.13.0-1) ... 103s Selecting previously unselected package librust-crossbeam-utils-dev:s390x. 103s Preparing to unpack .../075-librust-crossbeam-utils-dev_0.8.19-1_s390x.deb ... 103s Unpacking librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 103s Selecting previously unselected package librust-crossbeam-epoch-dev:s390x. 103s Preparing to unpack .../076-librust-crossbeam-epoch-dev_0.9.18-1_s390x.deb ... 103s Unpacking librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 103s Selecting previously unselected package librust-crossbeam-epoch+std-dev:s390x. 103s Preparing to unpack .../077-librust-crossbeam-epoch+std-dev_0.9.18-1_s390x.deb ... 103s Unpacking librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 103s Selecting previously unselected package librust-crossbeam-deque-dev:s390x. 103s Preparing to unpack .../078-librust-crossbeam-deque-dev_0.8.5-1_s390x.deb ... 103s Unpacking librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 103s Selecting previously unselected package librust-rayon-core-dev:s390x. 103s Preparing to unpack .../079-librust-rayon-core-dev_1.12.1-1_s390x.deb ... 103s Unpacking librust-rayon-core-dev:s390x (1.12.1-1) ... 103s Selecting previously unselected package librust-rayon-dev:s390x. 104s Preparing to unpack .../080-librust-rayon-dev_1.10.0-1_s390x.deb ... 104s Unpacking librust-rayon-dev:s390x (1.10.0-1) ... 104s Selecting previously unselected package librust-hashbrown-dev:s390x. 104s Preparing to unpack .../081-librust-hashbrown-dev_0.14.5-5_s390x.deb ... 104s Unpacking librust-hashbrown-dev:s390x (0.14.5-5) ... 104s Selecting previously unselected package librust-indexmap-dev:s390x. 104s Preparing to unpack .../082-librust-indexmap-dev_2.7.0-1_s390x.deb ... 104s Unpacking librust-indexmap-dev:s390x (2.7.0-1) ... 104s Selecting previously unselected package librust-stable-deref-trait-dev:s390x. 104s Preparing to unpack .../083-librust-stable-deref-trait-dev_1.2.0-1_s390x.deb ... 104s Unpacking librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 104s Selecting previously unselected package librust-gimli-dev:s390x. 104s Preparing to unpack .../084-librust-gimli-dev_0.31.1-2_s390x.deb ... 104s Unpacking librust-gimli-dev:s390x (0.31.1-2) ... 104s Selecting previously unselected package librust-memmap2-dev:s390x. 104s Preparing to unpack .../085-librust-memmap2-dev_0.9.5-1_s390x.deb ... 104s Unpacking librust-memmap2-dev:s390x (0.9.5-1) ... 104s Selecting previously unselected package librust-crc32fast-dev:s390x. 104s Preparing to unpack .../086-librust-crc32fast-dev_1.4.2-1_s390x.deb ... 104s Unpacking librust-crc32fast-dev:s390x (1.4.2-1) ... 104s Selecting previously unselected package pkgconf-bin. 104s Preparing to unpack .../087-pkgconf-bin_1.8.1-4_s390x.deb ... 104s Unpacking pkgconf-bin (1.8.1-4) ... 104s Selecting previously unselected package pkgconf:s390x. 104s Preparing to unpack .../088-pkgconf_1.8.1-4_s390x.deb ... 104s Unpacking pkgconf:s390x (1.8.1-4) ... 104s Selecting previously unselected package librust-pkg-config-dev:s390x. 104s Preparing to unpack .../089-librust-pkg-config-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-pkg-config-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package zlib1g-dev:s390x. 104s Preparing to unpack .../090-zlib1g-dev_1%3a1.3.dfsg+really1.3.1-1ubuntu1_s390x.deb ... 104s Unpacking zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 104s Selecting previously unselected package librust-libz-sys-dev:s390x. 104s Preparing to unpack .../091-librust-libz-sys-dev_1.1.20-1_s390x.deb ... 104s Unpacking librust-libz-sys-dev:s390x (1.1.20-1) ... 104s Selecting previously unselected package librust-adler-dev:s390x. 104s Preparing to unpack .../092-librust-adler-dev_1.0.2-2_s390x.deb ... 104s Unpacking librust-adler-dev:s390x (1.0.2-2) ... 104s Selecting previously unselected package librust-miniz-oxide-dev:s390x. 104s Preparing to unpack .../093-librust-miniz-oxide-dev_0.7.1-1_s390x.deb ... 104s Unpacking librust-miniz-oxide-dev:s390x (0.7.1-1) ... 104s Selecting previously unselected package librust-flate2-dev:s390x. 104s Preparing to unpack .../094-librust-flate2-dev_1.0.34-1_s390x.deb ... 104s Unpacking librust-flate2-dev:s390x (1.0.34-1) ... 104s Selecting previously unselected package librust-sval-derive-dev:s390x. 104s Preparing to unpack .../095-librust-sval-derive-dev_2.6.1-2_s390x.deb ... 104s Unpacking librust-sval-derive-dev:s390x (2.6.1-2) ... 104s Selecting previously unselected package librust-sval-dev:s390x. 104s Preparing to unpack .../096-librust-sval-dev_2.6.1-2_s390x.deb ... 104s Unpacking librust-sval-dev:s390x (2.6.1-2) ... 104s Selecting previously unselected package librust-sval-ref-dev:s390x. 104s Preparing to unpack .../097-librust-sval-ref-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-ref-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-erased-serde-dev:s390x. 104s Preparing to unpack .../098-librust-erased-serde-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-erased-serde-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package librust-serde-fmt-dev. 104s Preparing to unpack .../099-librust-serde-fmt-dev_1.0.3-4_all.deb ... 104s Unpacking librust-serde-fmt-dev (1.0.3-4) ... 104s Selecting previously unselected package librust-no-panic-dev:s390x. 104s Preparing to unpack .../100-librust-no-panic-dev_0.1.32-1_s390x.deb ... 104s Unpacking librust-no-panic-dev:s390x (0.1.32-1) ... 104s Selecting previously unselected package librust-itoa-dev:s390x. 104s Preparing to unpack .../101-librust-itoa-dev_1.0.14-1_s390x.deb ... 104s Unpacking librust-itoa-dev:s390x (1.0.14-1) ... 104s Selecting previously unselected package librust-ryu-dev:s390x. 104s Preparing to unpack .../102-librust-ryu-dev_1.0.19-1_s390x.deb ... 104s Unpacking librust-ryu-dev:s390x (1.0.19-1) ... 104s Selecting previously unselected package librust-serde-json-dev:s390x. 104s Preparing to unpack .../103-librust-serde-json-dev_1.0.133-1_s390x.deb ... 104s Unpacking librust-serde-json-dev:s390x (1.0.133-1) ... 104s Selecting previously unselected package librust-serde-test-dev:s390x. 104s Preparing to unpack .../104-librust-serde-test-dev_1.0.171-1_s390x.deb ... 104s Unpacking librust-serde-test-dev:s390x (1.0.171-1) ... 104s Selecting previously unselected package librust-value-bag-serde1-dev:s390x. 104s Preparing to unpack .../105-librust-value-bag-serde1-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-sval-buffer-dev:s390x. 104s Preparing to unpack .../106-librust-sval-buffer-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-buffer-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-dynamic-dev:s390x. 104s Preparing to unpack .../107-librust-sval-dynamic-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-dynamic-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-fmt-dev:s390x. 104s Preparing to unpack .../108-librust-sval-fmt-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-fmt-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-sval-serde-dev:s390x. 104s Preparing to unpack .../109-librust-sval-serde-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-sval-serde-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-value-bag-sval2-dev:s390x. 104s Preparing to unpack .../110-librust-value-bag-sval2-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-value-bag-dev:s390x. 104s Preparing to unpack .../111-librust-value-bag-dev_1.9.0-1_s390x.deb ... 104s Unpacking librust-value-bag-dev:s390x (1.9.0-1) ... 104s Selecting previously unselected package librust-log-dev:s390x. 104s Preparing to unpack .../112-librust-log-dev_0.4.22-1_s390x.deb ... 104s Unpacking librust-log-dev:s390x (0.4.22-1) ... 104s Selecting previously unselected package librust-memchr-dev:s390x. 104s Preparing to unpack .../113-librust-memchr-dev_2.7.4-1_s390x.deb ... 104s Unpacking librust-memchr-dev:s390x (2.7.4-1) ... 104s Selecting previously unselected package librust-blobby-dev:s390x. 104s Preparing to unpack .../114-librust-blobby-dev_0.3.1-1_s390x.deb ... 104s Unpacking librust-blobby-dev:s390x (0.3.1-1) ... 104s Selecting previously unselected package librust-typenum-dev:s390x. 104s Preparing to unpack .../115-librust-typenum-dev_1.17.0-2_s390x.deb ... 104s Unpacking librust-typenum-dev:s390x (1.17.0-2) ... 104s Selecting previously unselected package librust-zeroize-derive-dev:s390x. 104s Preparing to unpack .../116-librust-zeroize-derive-dev_1.4.2-1_s390x.deb ... 104s Unpacking librust-zeroize-derive-dev:s390x (1.4.2-1) ... 104s Selecting previously unselected package librust-zeroize-dev:s390x. 104s Preparing to unpack .../117-librust-zeroize-dev_1.8.1-1_s390x.deb ... 104s Unpacking librust-zeroize-dev:s390x (1.8.1-1) ... 104s Selecting previously unselected package librust-generic-array-dev:s390x. 104s Preparing to unpack .../118-librust-generic-array-dev_0.14.7-1_s390x.deb ... 104s Unpacking librust-generic-array-dev:s390x (0.14.7-1) ... 104s Selecting previously unselected package librust-block-buffer-dev:s390x. 104s Preparing to unpack .../119-librust-block-buffer-dev_0.10.2-2_s390x.deb ... 104s Unpacking librust-block-buffer-dev:s390x (0.10.2-2) ... 104s Selecting previously unselected package librust-const-oid-dev:s390x. 104s Preparing to unpack .../120-librust-const-oid-dev_0.9.6-1_s390x.deb ... 104s Unpacking librust-const-oid-dev:s390x (0.9.6-1) ... 104s Selecting previously unselected package librust-rand-core-dev:s390x. 104s Preparing to unpack .../121-librust-rand-core-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-rand-core+getrandom-dev:s390x. 104s Preparing to unpack .../122-librust-rand-core+getrandom-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-crypto-common-dev:s390x. 104s Preparing to unpack .../123-librust-crypto-common-dev_0.1.6-1_s390x.deb ... 104s Unpacking librust-crypto-common-dev:s390x (0.1.6-1) ... 104s Selecting previously unselected package librust-subtle-dev:s390x. 104s Preparing to unpack .../124-librust-subtle-dev_2.6.1-1_s390x.deb ... 104s Unpacking librust-subtle-dev:s390x (2.6.1-1) ... 104s Selecting previously unselected package librust-digest-dev:s390x. 104s Preparing to unpack .../125-librust-digest-dev_0.10.7-2_s390x.deb ... 104s Unpacking librust-digest-dev:s390x (0.10.7-2) ... 104s Selecting previously unselected package librust-ppv-lite86-dev:s390x. 104s Preparing to unpack .../126-librust-ppv-lite86-dev_0.2.20-1_s390x.deb ... 104s Unpacking librust-ppv-lite86-dev:s390x (0.2.20-1) ... 104s Selecting previously unselected package librust-rand-chacha-dev:s390x. 104s Preparing to unpack .../127-librust-rand-chacha-dev_0.3.1-2_s390x.deb ... 104s Unpacking librust-rand-chacha-dev:s390x (0.3.1-2) ... 104s Selecting previously unselected package librust-rand-core+serde-dev:s390x. 104s Preparing to unpack .../128-librust-rand-core+serde-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core+serde-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-rand-core+std-dev:s390x. 104s Preparing to unpack .../129-librust-rand-core+std-dev_0.6.4-2_s390x.deb ... 104s Unpacking librust-rand-core+std-dev:s390x (0.6.4-2) ... 104s Selecting previously unselected package librust-rand-dev:s390x. 104s Preparing to unpack .../130-librust-rand-dev_0.8.5-1_s390x.deb ... 104s Unpacking librust-rand-dev:s390x (0.8.5-1) ... 104s Selecting previously unselected package librust-static-assertions-dev:s390x. 104s Preparing to unpack .../131-librust-static-assertions-dev_1.1.0-1_s390x.deb ... 104s Unpacking librust-static-assertions-dev:s390x (1.1.0-1) ... 104s Selecting previously unselected package librust-twox-hash-dev:s390x. 104s Preparing to unpack .../132-librust-twox-hash-dev_1.6.3-1_s390x.deb ... 104s Unpacking librust-twox-hash-dev:s390x (1.6.3-1) ... 104s Selecting previously unselected package librust-ruzstd-dev:s390x. 104s Preparing to unpack .../133-librust-ruzstd-dev_0.7.3-2_s390x.deb ... 104s Unpacking librust-ruzstd-dev:s390x (0.7.3-2) ... 104s Selecting previously unselected package librust-object-dev:s390x. 104s Preparing to unpack .../134-librust-object-dev_0.36.5-2_s390x.deb ... 104s Unpacking librust-object-dev:s390x (0.36.5-2) ... 104s Selecting previously unselected package librust-rustc-demangle-dev:s390x. 104s Preparing to unpack .../135-librust-rustc-demangle-dev_0.1.24-1_s390x.deb ... 104s Unpacking librust-rustc-demangle-dev:s390x (0.1.24-1) ... 104s Selecting previously unselected package librust-typed-arena-dev:s390x. 104s Preparing to unpack .../136-librust-typed-arena-dev_2.0.2-1_s390x.deb ... 104s Unpacking librust-typed-arena-dev:s390x (2.0.2-1) ... 104s Selecting previously unselected package librust-addr2line-dev:s390x. 104s Preparing to unpack .../137-librust-addr2line-dev_0.24.2-2_s390x.deb ... 104s Unpacking librust-addr2line-dev:s390x (0.24.2-2) ... 104s Selecting previously unselected package librust-syn-1-dev:s390x. 104s Preparing to unpack .../138-librust-syn-1-dev_1.0.109-3_s390x.deb ... 104s Unpacking librust-syn-1-dev:s390x (1.0.109-3) ... 104s Selecting previously unselected package librust-async-attributes-dev. 104s Preparing to unpack .../139-librust-async-attributes-dev_1.1.2-7_all.deb ... 104s Unpacking librust-async-attributes-dev (1.1.2-7) ... 104s Selecting previously unselected package librust-concurrent-queue-dev:s390x. 104s Preparing to unpack .../140-librust-concurrent-queue-dev_2.5.0-4_s390x.deb ... 104s Unpacking librust-concurrent-queue-dev:s390x (2.5.0-4) ... 104s Selecting previously unselected package librust-parking-dev:s390x. 104s Preparing to unpack .../141-librust-parking-dev_2.2.0-1_s390x.deb ... 104s Unpacking librust-parking-dev:s390x (2.2.0-1) ... 104s Selecting previously unselected package librust-pin-project-lite-dev:s390x. 104s Preparing to unpack .../142-librust-pin-project-lite-dev_0.2.13-1_s390x.deb ... 104s Unpacking librust-pin-project-lite-dev:s390x (0.2.13-1) ... 104s Selecting previously unselected package librust-event-listener-dev. 104s Preparing to unpack .../143-librust-event-listener-dev_5.4.0-3_all.deb ... 104s Unpacking librust-event-listener-dev (5.4.0-3) ... 104s Selecting previously unselected package librust-event-listener-strategy-dev:s390x. 104s Preparing to unpack .../144-librust-event-listener-strategy-dev_0.5.3-1_s390x.deb ... 104s Unpacking librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 104s Selecting previously unselected package librust-futures-core-dev:s390x. 104s Preparing to unpack .../145-librust-futures-core-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-futures-core-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package librust-async-channel-dev. 104s Preparing to unpack .../146-librust-async-channel-dev_2.3.1-9_all.deb ... 104s Unpacking librust-async-channel-dev (2.3.1-9) ... 104s Selecting previously unselected package librust-async-task-dev. 104s Preparing to unpack .../147-librust-async-task-dev_4.7.1-4_all.deb ... 104s Unpacking librust-async-task-dev (4.7.1-4) ... 104s Selecting previously unselected package librust-fastrand-dev:s390x. 104s Preparing to unpack .../148-librust-fastrand-dev_2.1.1-1_s390x.deb ... 104s Unpacking librust-fastrand-dev:s390x (2.1.1-1) ... 104s Selecting previously unselected package librust-futures-io-dev:s390x. 104s Preparing to unpack .../149-librust-futures-io-dev_0.3.31-1_s390x.deb ... 104s Unpacking librust-futures-io-dev:s390x (0.3.31-1) ... 104s Selecting previously unselected package librust-futures-lite-dev:s390x. 104s Preparing to unpack .../150-librust-futures-lite-dev_2.3.0-2_s390x.deb ... 104s Unpacking librust-futures-lite-dev:s390x (2.3.0-2) ... 104s Selecting previously unselected package librust-autocfg-dev:s390x. 104s Preparing to unpack .../151-librust-autocfg-dev_1.1.0-1_s390x.deb ... 104s Unpacking librust-autocfg-dev:s390x (1.1.0-1) ... 104s Selecting previously unselected package librust-slab-dev:s390x. 104s Preparing to unpack .../152-librust-slab-dev_0.4.9-1_s390x.deb ... 104s Unpacking librust-slab-dev:s390x (0.4.9-1) ... 104s Selecting previously unselected package librust-async-executor-dev. 104s Preparing to unpack .../153-librust-async-executor-dev_1.13.1-2_all.deb ... 104s Unpacking librust-async-executor-dev (1.13.1-2) ... 104s Selecting previously unselected package librust-async-lock-dev. 104s Preparing to unpack .../154-librust-async-lock-dev_3.4.0-5_all.deb ... 104s Unpacking librust-async-lock-dev (3.4.0-5) ... 104s Selecting previously unselected package librust-bytemuck-derive-dev:s390x. 104s Preparing to unpack .../155-librust-bytemuck-derive-dev_1.5.0-2_s390x.deb ... 104s Unpacking librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 104s Selecting previously unselected package librust-bytemuck-dev:s390x. 104s Preparing to unpack .../156-librust-bytemuck-dev_1.21.0-1_s390x.deb ... 104s Unpacking librust-bytemuck-dev:s390x (1.21.0-1) ... 104s Selecting previously unselected package librust-bitflags-dev:s390x. 104s Preparing to unpack .../157-librust-bitflags-dev_2.8.0-1_s390x.deb ... 104s Unpacking librust-bitflags-dev:s390x (2.8.0-1) ... 104s Selecting previously unselected package librust-compiler-builtins+core-dev:s390x. 104s Preparing to unpack .../158-librust-compiler-builtins+core-dev_0.1.139-1_s390x.deb ... 104s Unpacking librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 104s Selecting previously unselected package librust-compiler-builtins+rustc-dep-of-std-dev:s390x. 104s Preparing to unpack .../159-librust-compiler-builtins+rustc-dep-of-std-dev_0.1.139-1_s390x.deb ... 104s Unpacking librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 104s Selecting previously unselected package librust-errno-dev:s390x. 104s Preparing to unpack .../160-librust-errno-dev_0.3.8-1_s390x.deb ... 104s Unpacking librust-errno-dev:s390x (0.3.8-1) ... 104s Selecting previously unselected package librust-linux-raw-sys-dev:s390x. 104s Preparing to unpack .../161-librust-linux-raw-sys-dev_0.4.14-1_s390x.deb ... 104s Unpacking librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 104s Selecting previously unselected package librust-rustix-dev:s390x. 104s Preparing to unpack .../162-librust-rustix-dev_0.38.37-1_s390x.deb ... 104s Unpacking librust-rustix-dev:s390x (0.38.37-1) ... 104s Selecting previously unselected package librust-tracing-attributes-dev:s390x. 104s Preparing to unpack .../163-librust-tracing-attributes-dev_0.1.27-1_s390x.deb ... 104s Unpacking librust-tracing-attributes-dev:s390x (0.1.27-1) ... 104s Selecting previously unselected package librust-valuable-derive-dev:s390x. 104s Preparing to unpack .../164-librust-valuable-derive-dev_0.1.0-1_s390x.deb ... 104s Unpacking librust-valuable-derive-dev:s390x (0.1.0-1) ... 104s Selecting previously unselected package librust-valuable-dev:s390x. 104s Preparing to unpack .../165-librust-valuable-dev_0.1.0-4_s390x.deb ... 104s Unpacking librust-valuable-dev:s390x (0.1.0-4) ... 105s Selecting previously unselected package librust-tracing-core-dev:s390x. 105s Preparing to unpack .../166-librust-tracing-core-dev_0.1.32-1_s390x.deb ... 105s Unpacking librust-tracing-core-dev:s390x (0.1.32-1) ... 105s Selecting previously unselected package librust-tracing-dev:s390x. 105s Preparing to unpack .../167-librust-tracing-dev_0.1.40-1_s390x.deb ... 105s Unpacking librust-tracing-dev:s390x (0.1.40-1) ... 105s Selecting previously unselected package librust-polling-dev:s390x. 105s Preparing to unpack .../168-librust-polling-dev_3.4.0-1_s390x.deb ... 105s Unpacking librust-polling-dev:s390x (3.4.0-1) ... 105s Selecting previously unselected package librust-async-io-dev:s390x. 105s Preparing to unpack .../169-librust-async-io-dev_2.3.3-4_s390x.deb ... 105s Unpacking librust-async-io-dev:s390x (2.3.3-4) ... 105s Selecting previously unselected package librust-atomic-waker-dev:s390x. 105s Preparing to unpack .../170-librust-atomic-waker-dev_1.1.2-1_s390x.deb ... 105s Unpacking librust-atomic-waker-dev:s390x (1.1.2-1) ... 105s Selecting previously unselected package librust-blocking-dev. 105s Preparing to unpack .../171-librust-blocking-dev_1.6.1-6_all.deb ... 105s Unpacking librust-blocking-dev (1.6.1-6) ... 105s Selecting previously unselected package librust-backtrace-dev:s390x. 105s Preparing to unpack .../172-librust-backtrace-dev_0.3.74-3_s390x.deb ... 105s Unpacking librust-backtrace-dev:s390x (0.3.74-3) ... 105s Selecting previously unselected package librust-bytes-dev:s390x. 105s Preparing to unpack .../173-librust-bytes-dev_1.9.0-1_s390x.deb ... 105s Unpacking librust-bytes-dev:s390x (1.9.0-1) ... 105s Selecting previously unselected package librust-mio-dev:s390x. 105s Preparing to unpack .../174-librust-mio-dev_1.0.2-3_s390x.deb ... 105s Unpacking librust-mio-dev:s390x (1.0.2-3) ... 105s Selecting previously unselected package librust-owning-ref-dev:s390x. 105s Preparing to unpack .../175-librust-owning-ref-dev_0.4.1-1_s390x.deb ... 105s Unpacking librust-owning-ref-dev:s390x (0.4.1-1) ... 105s Selecting previously unselected package librust-scopeguard-dev:s390x. 105s Preparing to unpack .../176-librust-scopeguard-dev_1.2.0-1_s390x.deb ... 105s Unpacking librust-scopeguard-dev:s390x (1.2.0-1) ... 105s Selecting previously unselected package librust-lock-api-dev:s390x. 105s Preparing to unpack .../177-librust-lock-api-dev_0.4.12-1_s390x.deb ... 105s Unpacking librust-lock-api-dev:s390x (0.4.12-1) ... 105s Selecting previously unselected package librust-parking-lot-dev:s390x. 105s Preparing to unpack .../178-librust-parking-lot-dev_0.12.3-1_s390x.deb ... 105s Unpacking librust-parking-lot-dev:s390x (0.12.3-1) ... 105s Selecting previously unselected package librust-signal-hook-registry-dev:s390x. 105s Preparing to unpack .../179-librust-signal-hook-registry-dev_1.4.0-1_s390x.deb ... 105s Unpacking librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 105s Selecting previously unselected package librust-socket2-dev:s390x. 105s Preparing to unpack .../180-librust-socket2-dev_0.5.8-1_s390x.deb ... 105s Unpacking librust-socket2-dev:s390x (0.5.8-1) ... 105s Selecting previously unselected package librust-tokio-macros-dev:s390x. 105s Preparing to unpack .../181-librust-tokio-macros-dev_2.5.0-1_s390x.deb ... 105s Unpacking librust-tokio-macros-dev:s390x (2.5.0-1) ... 105s Selecting previously unselected package librust-tokio-dev:s390x. 105s Preparing to unpack .../182-librust-tokio-dev_1.43.0-1_s390x.deb ... 105s Unpacking librust-tokio-dev:s390x (1.43.0-1) ... 105s Selecting previously unselected package librust-async-global-executor-dev:s390x. 105s Preparing to unpack .../183-librust-async-global-executor-dev_2.4.1-5_s390x.deb ... 105s Unpacking librust-async-global-executor-dev:s390x (2.4.1-5) ... 105s Selecting previously unselected package librust-async-signal-dev:s390x. 105s Preparing to unpack .../184-librust-async-signal-dev_0.2.10-1_s390x.deb ... 105s Unpacking librust-async-signal-dev:s390x (0.2.10-1) ... 105s Selecting previously unselected package librust-async-process-dev. 105s Preparing to unpack .../185-librust-async-process-dev_2.3.0-2_all.deb ... 105s Unpacking librust-async-process-dev (2.3.0-2) ... 105s Selecting previously unselected package librust-kv-log-macro-dev. 105s Preparing to unpack .../186-librust-kv-log-macro-dev_1.0.8-5_all.deb ... 105s Unpacking librust-kv-log-macro-dev (1.0.8-5) ... 105s Selecting previously unselected package librust-pin-utils-dev:s390x. 105s Preparing to unpack .../187-librust-pin-utils-dev_0.1.0-1_s390x.deb ... 105s Unpacking librust-pin-utils-dev:s390x (0.1.0-1) ... 105s Selecting previously unselected package librust-async-std-dev. 105s Preparing to unpack .../188-librust-async-std-dev_1.13.0-4_all.deb ... 105s Unpacking librust-async-std-dev (1.13.0-4) ... 105s Selecting previously unselected package librust-bit-vec-dev:s390x. 105s Preparing to unpack .../189-librust-bit-vec-dev_0.8.0-1_s390x.deb ... 105s Unpacking librust-bit-vec-dev:s390x (0.8.0-1) ... 105s Selecting previously unselected package librust-bit-set-dev:s390x. 105s Preparing to unpack .../190-librust-bit-set-dev_0.8.0-1_s390x.deb ... 105s Unpacking librust-bit-set-dev:s390x (0.8.0-1) ... 105s Selecting previously unselected package librust-jobserver-dev:s390x. 105s Preparing to unpack .../191-librust-jobserver-dev_0.1.32-1_s390x.deb ... 105s Unpacking librust-jobserver-dev:s390x (0.1.32-1) ... 105s Selecting previously unselected package librust-shlex-dev:s390x. 105s Preparing to unpack .../192-librust-shlex-dev_1.3.0-1_s390x.deb ... 105s Unpacking librust-shlex-dev:s390x (1.3.0-1) ... 105s Selecting previously unselected package librust-cc-dev:s390x. 105s Preparing to unpack .../193-librust-cc-dev_1.1.14-1_s390x.deb ... 105s Unpacking librust-cc-dev:s390x (1.1.14-1) ... 105s Selecting previously unselected package librust-cfg-aliases-dev:s390x. 105s Preparing to unpack .../194-librust-cfg-aliases-dev_0.2.1-1_s390x.deb ... 105s Unpacking librust-cfg-aliases-dev:s390x (0.2.1-1) ... 105s Selecting previously unselected package librust-derive-new-dev:s390x. 105s Preparing to unpack .../195-librust-derive-new-dev_0.5.8-1_s390x.deb ... 105s Unpacking librust-derive-new-dev:s390x (0.5.8-1) ... 105s Selecting previously unselected package librust-libloading-dev:s390x. 105s Preparing to unpack .../196-librust-libloading-dev_0.8.5-1_s390x.deb ... 105s Unpacking librust-libloading-dev:s390x (0.8.5-1) ... 105s Selecting previously unselected package librust-dlib-dev:s390x. 105s Preparing to unpack .../197-librust-dlib-dev_0.5.2-2_s390x.deb ... 105s Unpacking librust-dlib-dev:s390x (0.5.2-2) ... 105s Selecting previously unselected package librust-downcast-rs-dev:s390x. 105s Preparing to unpack .../198-librust-downcast-rs-dev_1.2.0-1_s390x.deb ... 105s Unpacking librust-downcast-rs-dev:s390x (1.2.0-1) ... 105s Selecting previously unselected package librust-encoding-rs-dev:s390x. 105s Preparing to unpack .../199-librust-encoding-rs-dev_0.8.35-1_s390x.deb ... 105s Unpacking librust-encoding-rs-dev:s390x (0.8.35-1) ... 105s Selecting previously unselected package librust-fixedbitset-dev:s390x. 105s Preparing to unpack .../200-librust-fixedbitset-dev_0.4.2-1_s390x.deb ... 105s Unpacking librust-fixedbitset-dev:s390x (0.4.2-1) ... 105s Selecting previously unselected package librust-fnv-dev:s390x. 105s Preparing to unpack .../201-librust-fnv-dev_1.0.7-1_s390x.deb ... 105s Unpacking librust-fnv-dev:s390x (1.0.7-1) ... 105s Selecting previously unselected package librust-os-pipe-dev:s390x. 105s Preparing to unpack .../202-librust-os-pipe-dev_1.2.1-1_s390x.deb ... 105s Unpacking librust-os-pipe-dev:s390x (1.2.1-1) ... 105s Selecting previously unselected package librust-io-lifetimes-dev:s390x. 105s Preparing to unpack .../203-librust-io-lifetimes-dev_2.0.3-1_s390x.deb ... 105s Unpacking librust-io-lifetimes-dev:s390x (2.0.3-1) ... 105s Selecting previously unselected package librust-spin-dev:s390x. 105s Preparing to unpack .../204-librust-spin-dev_0.9.8-4_s390x.deb ... 105s Unpacking librust-spin-dev:s390x (0.9.8-4) ... 105s Selecting previously unselected package librust-lazy-static-dev:s390x. 105s Preparing to unpack .../205-librust-lazy-static-dev_1.5.0-1_s390x.deb ... 105s Unpacking librust-lazy-static-dev:s390x (1.5.0-1) ... 105s Selecting previously unselected package librust-libm-dev:s390x. 105s Preparing to unpack .../206-librust-libm-dev_0.2.8-1_s390x.deb ... 105s Unpacking librust-libm-dev:s390x (0.2.8-1) ... 105s Selecting previously unselected package librust-memoffset-dev:s390x. 105s Preparing to unpack .../207-librust-memoffset-dev_0.8.0-1_s390x.deb ... 105s Unpacking librust-memoffset-dev:s390x (0.8.0-1) ... 105s Selecting previously unselected package librust-minimal-lexical-dev:s390x. 105s Preparing to unpack .../208-librust-minimal-lexical-dev_0.2.1-2_s390x.deb ... 105s Unpacking librust-minimal-lexical-dev:s390x (0.2.1-2) ... 105s Selecting previously unselected package librust-nix-dev:s390x. 105s Preparing to unpack .../209-librust-nix-dev_0.29.0-2_s390x.deb ... 105s Unpacking librust-nix-dev:s390x (0.29.0-2) ... 105s Selecting previously unselected package librust-nom-dev:s390x. 105s Preparing to unpack .../210-librust-nom-dev_7.1.3-1_s390x.deb ... 105s Unpacking librust-nom-dev:s390x (7.1.3-1) ... 105s Selecting previously unselected package librust-nom+std-dev:s390x. 105s Preparing to unpack .../211-librust-nom+std-dev_7.1.3-1_s390x.deb ... 105s Unpacking librust-nom+std-dev:s390x (7.1.3-1) ... 105s Selecting previously unselected package librust-num-traits-dev:s390x. 105s Preparing to unpack .../212-librust-num-traits-dev_0.2.19-2_s390x.deb ... 105s Unpacking librust-num-traits-dev:s390x (0.2.19-2) ... 105s Selecting previously unselected package librust-petgraph-dev:s390x. 105s Preparing to unpack .../213-librust-petgraph-dev_0.6.4-1_s390x.deb ... 105s Unpacking librust-petgraph-dev:s390x (0.6.4-1) ... 105s Selecting previously unselected package librust-proptest-derive-dev:s390x. 105s Preparing to unpack .../214-librust-proptest-derive-dev_0.4.0-1_s390x.deb ... 105s Unpacking librust-proptest-derive-dev:s390x (0.4.0-1) ... 105s Selecting previously unselected package librust-rand-xorshift-dev:s390x. 105s Preparing to unpack .../215-librust-rand-xorshift-dev_0.3.0-2_s390x.deb ... 105s Unpacking librust-rand-xorshift-dev:s390x (0.3.0-2) ... 105s Selecting previously unselected package librust-regex-syntax-dev:s390x. 105s Preparing to unpack .../216-librust-regex-syntax-dev_0.8.5-1_s390x.deb ... 105s Unpacking librust-regex-syntax-dev:s390x (0.8.5-1) ... 105s Selecting previously unselected package librust-quick-error-dev:s390x. 105s Preparing to unpack .../217-librust-quick-error-dev_2.0.1-1_s390x.deb ... 105s Unpacking librust-quick-error-dev:s390x (2.0.1-1) ... 105s Selecting previously unselected package librust-tempfile-dev:s390x. 105s Preparing to unpack .../218-librust-tempfile-dev_3.15.0-1_s390x.deb ... 105s Unpacking librust-tempfile-dev:s390x (3.15.0-1) ... 105s Selecting previously unselected package librust-rusty-fork-dev:s390x. 105s Preparing to unpack .../219-librust-rusty-fork-dev_0.3.0-1_s390x.deb ... 105s Unpacking librust-rusty-fork-dev:s390x (0.3.0-1) ... 105s Selecting previously unselected package librust-wait-timeout-dev:s390x. 105s Preparing to unpack .../220-librust-wait-timeout-dev_0.2.0-1_s390x.deb ... 105s Unpacking librust-wait-timeout-dev:s390x (0.2.0-1) ... 105s Selecting previously unselected package librust-rusty-fork+wait-timeout-dev:s390x. 105s Preparing to unpack .../221-librust-rusty-fork+wait-timeout-dev_0.3.0-1_s390x.deb ... 105s Unpacking librust-rusty-fork+wait-timeout-dev:s390x (0.3.0-1) ... 105s Selecting previously unselected package librust-unarray-dev:s390x. 105s Preparing to unpack .../222-librust-unarray-dev_0.1.4-1_s390x.deb ... 105s Unpacking librust-unarray-dev:s390x (0.1.4-1) ... 105s Selecting previously unselected package librust-proptest-dev:s390x. 105s Preparing to unpack .../223-librust-proptest-dev_1.6.0-1_s390x.deb ... 105s Unpacking librust-proptest-dev:s390x (1.6.0-1) ... 105s Selecting previously unselected package librust-quick-xml-dev:s390x. 105s Preparing to unpack .../224-librust-quick-xml-dev_0.36.1-2_s390x.deb ... 105s Unpacking librust-quick-xml-dev:s390x (0.36.1-2) ... 105s Selecting previously unselected package librust-raw-window-handle-dev:s390x. 105s Preparing to unpack .../225-librust-raw-window-handle-dev_0.5.2-1_s390x.deb ... 105s Unpacking librust-raw-window-handle-dev:s390x (0.5.2-1) ... 105s Selecting previously unselected package librust-scoped-tls-dev:s390x. 105s Preparing to unpack .../226-librust-scoped-tls-dev_1.0.1-1_s390x.deb ... 105s Unpacking librust-scoped-tls-dev:s390x (1.0.1-1) ... 105s Selecting previously unselected package librust-thiserror-impl-1-dev:s390x. 105s Preparing to unpack .../227-librust-thiserror-impl-1-dev_1.0.69-1_s390x.deb ... 105s Unpacking librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 105s Selecting previously unselected package librust-thiserror-1-dev:s390x. 105s Preparing to unpack .../228-librust-thiserror-1-dev_1.0.69-1_s390x.deb ... 105s Unpacking librust-thiserror-1-dev:s390x (1.0.69-1) ... 105s Selecting previously unselected package librust-tree-magic-db-dev:s390x. 105s Preparing to unpack .../229-librust-tree-magic-db-dev_3.0.0-1_s390x.deb ... 105s Unpacking librust-tree-magic-db-dev:s390x (3.0.0-1) ... 105s Selecting previously unselected package librust-tree-magic-mini-dev:s390x. 105s Preparing to unpack .../230-librust-tree-magic-mini-dev_3.1.6-1_s390x.deb ... 105s Unpacking librust-tree-magic-mini-dev:s390x (3.1.6-1) ... 105s Selecting previously unselected package libwayland-client0:s390x. 105s Preparing to unpack .../231-libwayland-client0_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-client0:s390x (1.23.1-1) ... 105s Selecting previously unselected package libwayland-server0:s390x. 105s Preparing to unpack .../232-libwayland-server0_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-server0:s390x (1.23.1-1) ... 105s Selecting previously unselected package libwayland-cursor0:s390x. 105s Preparing to unpack .../233-libwayland-cursor0_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-cursor0:s390x (1.23.1-1) ... 105s Selecting previously unselected package libwayland-egl1:s390x. 105s Preparing to unpack .../234-libwayland-egl1_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-egl1:s390x (1.23.1-1) ... 105s Selecting previously unselected package libwayland-bin. 105s Preparing to unpack .../235-libwayland-bin_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-bin (1.23.1-1) ... 105s Selecting previously unselected package libffi-dev:s390x. 105s Preparing to unpack .../236-libffi-dev_3.4.6-1build1_s390x.deb ... 105s Unpacking libffi-dev:s390x (3.4.6-1build1) ... 105s Selecting previously unselected package libwayland-dev:s390x. 105s Preparing to unpack .../237-libwayland-dev_1.23.1-1_s390x.deb ... 105s Unpacking libwayland-dev:s390x (1.23.1-1) ... 105s Selecting previously unselected package librust-wayland-sys-dev:s390x. 105s Preparing to unpack .../238-librust-wayland-sys-dev_0.31.6-1_s390x.deb ... 105s Unpacking librust-wayland-sys-dev:s390x (0.31.6-1) ... 105s Selecting previously unselected package librust-wayland-backend-dev:s390x. 105s Preparing to unpack .../239-librust-wayland-backend-dev_0.3.8-1_s390x.deb ... 105s Unpacking librust-wayland-backend-dev:s390x (0.3.8-1) ... 105s Selecting previously unselected package librust-wayland-scanner-dev:s390x. 105s Preparing to unpack .../240-librust-wayland-scanner-dev_0.31.6-1_s390x.deb ... 105s Unpacking librust-wayland-scanner-dev:s390x (0.31.6-1) ... 105s Selecting previously unselected package librust-wayland-client-dev:s390x. 105s Preparing to unpack .../241-librust-wayland-client-dev_0.31.2-2_s390x.deb ... 105s Unpacking librust-wayland-client-dev:s390x (0.31.2-2) ... 105s Selecting previously unselected package librust-wayland-server-dev:s390x. 105s Preparing to unpack .../242-librust-wayland-server-dev_0.31.1-2_s390x.deb ... 105s Unpacking librust-wayland-server-dev:s390x (0.31.1-2) ... 105s Selecting previously unselected package librust-wayland-protocols-dev:s390x. 106s Preparing to unpack .../243-librust-wayland-protocols-dev_0.31.2-1_s390x.deb ... 106s Unpacking librust-wayland-protocols-dev:s390x (0.31.2-1) ... 106s Selecting previously unselected package librust-wayland-protocols-wlr-dev:s390x. 106s Preparing to unpack .../244-librust-wayland-protocols-wlr-dev_0.2.0-2_s390x.deb ... 106s Unpacking librust-wayland-protocols-wlr-dev:s390x (0.2.0-2) ... 106s Selecting previously unselected package librust-wl-clipboard-rs-dev:s390x. 106s Preparing to unpack .../245-librust-wl-clipboard-rs-dev_0.8.0-2_s390x.deb ... 106s Unpacking librust-wl-clipboard-rs-dev:s390x (0.8.0-2) ... 106s Setting up librust-crossbeam-utils-dev:s390x (0.8.19-1) ... 106s Setting up librust-parking-dev:s390x (2.2.0-1) ... 106s Setting up libwayland-server0:s390x (1.23.1-1) ... 106s Setting up librust-pin-utils-dev:s390x (0.1.0-1) ... 106s Setting up librust-fnv-dev:s390x (1.0.7-1) ... 106s Setting up librust-quick-error-dev:s390x (2.0.1-1) ... 106s Setting up librust-either-dev:s390x (1.13.0-1) ... 106s Setting up librust-scoped-tls-dev:s390x (1.0.1-1) ... 106s Setting up librust-adler-dev:s390x (1.0.2-2) ... 106s Setting up dh-cargo-tools (31ubuntu4) ... 106s Setting up librust-version-check-dev:s390x (0.9.5-1) ... 106s Setting up libarchive-zip-perl (1.68-1) ... 106s Setting up librust-raw-window-handle-dev:s390x (0.5.2-1) ... 106s Setting up librust-fastrand-dev:s390x (2.1.1-1) ... 106s Setting up libdebhelper-perl (13.23ubuntu1) ... 106s Setting up librust-libm-dev:s390x (0.2.8-1) ... 106s Setting up librust-typed-arena-dev:s390x (2.0.2-1) ... 106s Setting up m4 (1.4.19-5) ... 106s Setting up librust-rustc-demangle-dev:s390x (0.1.24-1) ... 106s Setting up librust-fallible-iterator-dev:s390x (0.3.0-2) ... 106s Setting up librust-ryu-dev:s390x (1.0.19-1) ... 106s Setting up libgomp1:s390x (14.2.0-16ubuntu1) ... 106s Setting up librust-subtle-dev:s390x (2.6.1-1) ... 106s Setting up libffi-dev:s390x (3.4.6-1build1) ... 106s Setting up librust-atomic-waker-dev:s390x (1.1.2-1) ... 106s Setting up librust-miniz-oxide-dev:s390x (0.7.1-1) ... 106s Setting up librust-pin-project-lite-dev:s390x (0.2.13-1) ... 106s Setting up librust-compiler-builtins-dev:s390x (0.1.139-1) ... 106s Setting up librust-crossbeam-epoch-dev:s390x (0.9.18-1) ... 106s Setting up libwayland-bin (1.23.1-1) ... 106s Setting up autotools-dev (20220109.1) ... 106s Setting up libpkgconf3:s390x (1.8.1-4) ... 106s Setting up librust-downcast-rs-dev:s390x (1.2.0-1) ... 106s Setting up librust-rustc-std-workspace-core-dev:s390x (1.0.0-1) ... 106s Setting up librust-futures-io-dev:s390x (0.3.31-1) ... 106s Setting up librust-typenum-dev:s390x (1.17.0-2) ... 106s Setting up librust-stable-deref-trait-dev:s390x (1.2.0-1) ... 106s Setting up librust-critical-section-dev:s390x (1.2.0-1) ... 106s Setting up librust-scopeguard-dev:s390x (1.2.0-1) ... 106s Setting up libmpc3:s390x (1.3.1-1build2) ... 106s Setting up librust-rand-core-dev:s390x (0.6.4-2) ... 106s Setting up autopoint (0.23.1-1) ... 106s Setting up librust-tree-magic-db-dev:s390x (3.0.0-1) ... 106s Setting up pkgconf-bin (1.8.1-4) ... 106s Setting up librust-crunchy-dev:s390x (0.2.2-1) ... 106s Setting up libgit2-1.9:s390x (1.9.0~ds-0ubuntu1) ... 106s Setting up autoconf (2.72-3) ... 106s Setting up libstd-rust-1.84:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 106s Setting up libubsan1:s390x (14.2.0-16ubuntu1) ... 106s Setting up zlib1g-dev:s390x (1:1.3.dfsg+really1.3.1-1ubuntu1) ... 106s Setting up librust-unicode-ident-dev:s390x (1.0.13-1) ... 106s Setting up librust-minimal-lexical-dev:s390x (0.2.1-2) ... 106s Setting up librust-equivalent-dev:s390x (1.0.1-1) ... 106s Setting up dwz (0.15-1build6) ... 106s Setting up libasan8:s390x (14.2.0-16ubuntu1) ... 106s Setting up libstd-rust-1.84-dev:s390x (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 106s Setting up librust-cfg-if-dev:s390x (1.0.0-1) ... 106s Setting up debugedit (1:5.1-2) ... 106s Setting up librust-blobby-dev:s390x (0.3.1-1) ... 106s Setting up librust-byteorder-dev:s390x (1.5.0-1) ... 106s Setting up libwayland-egl1:s390x (1.23.1-1) ... 106s Setting up librust-static-assertions-dev:s390x (1.1.0-1) ... 106s Setting up librust-compiler-builtins+core-dev:s390x (0.1.139-1) ... 106s Setting up librust-autocfg-dev:s390x (1.1.0-1) ... 106s Setting up libisl23:s390x (0.27-1) ... 106s Setting up librust-cfg-aliases-dev:s390x (0.2.1-1) ... 106s Setting up librust-shlex-dev:s390x (1.3.0-1) ... 106s Setting up librust-cpp-demangle-dev:s390x (0.4.0-1) ... 106s Setting up libcc1-0:s390x (14.2.0-16ubuntu1) ... 106s Setting up libitm1:s390x (14.2.0-16ubuntu1) ... 106s Setting up librust-unarray-dev:s390x (0.1.4-1) ... 106s Setting up libwayland-client0:s390x (1.23.1-1) ... 106s Setting up automake (1:1.17-3) ... 106s update-alternatives: using /usr/bin/automake-1.17 to provide /usr/bin/automake (automake) in auto mode 106s Setting up libfile-stripnondeterminism-perl (1.14.1-2) ... 106s Setting up librust-crossbeam-epoch+std-dev:s390x (0.9.18-1) ... 106s Setting up librust-libc-dev:s390x (0.2.169-1) ... 106s Setting up gettext (0.23.1-1) ... 106s Setting up librust-crossbeam-deque-dev:s390x (0.8.5-1) ... 106s Setting up librust-tiny-keccak-dev:s390x (2.0.2-1) ... 106s Setting up librust-linux-raw-sys-dev:s390x (0.4.14-1) ... 106s Setting up librust-getrandom-dev:s390x (0.2.15-1) ... 106s Setting up librust-libloading-dev:s390x (0.8.5-1) ... 106s Setting up librust-socket2-dev:s390x (0.5.8-1) ... 106s Setting up librust-memmap2-dev:s390x (0.9.5-1) ... 106s Setting up librust-owning-ref-dev:s390x (0.4.1-1) ... 106s Setting up librust-memoffset-dev:s390x (0.8.0-1) ... 106s Setting up librust-proc-macro2-dev:s390x (1.0.92-1) ... 106s Setting up librust-compiler-builtins+rustc-dep-of-std-dev:s390x (0.1.139-1) ... 106s Setting up librust-rayon-core-dev:s390x (1.12.1-1) ... 106s Setting up pkgconf:s390x (1.8.1-4) ... 106s Setting up intltool-debian (0.35.0+20060710.6) ... 106s Setting up librust-rand-core+getrandom-dev:s390x (0.6.4-2) ... 106s Setting up librust-rand-xorshift-dev:s390x (0.3.0-2) ... 106s Setting up librust-signal-hook-registry-dev:s390x (1.4.0-1) ... 106s Setting up librust-errno-dev:s390x (0.3.8-1) ... 106s Setting up librust-jobserver-dev:s390x (0.1.32-1) ... 106s Setting up cpp-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 106s Setting up cpp-14 (14.2.0-16ubuntu1) ... 106s Setting up dh-strip-nondeterminism (1.14.1-2) ... 106s Setting up librust-crc32fast-dev:s390x (1.4.2-1) ... 106s Setting up libwayland-cursor0:s390x (1.23.1-1) ... 106s Setting up librust-num-traits-dev:s390x (0.2.19-2) ... 106s Setting up librust-wait-timeout-dev:s390x (0.2.0-1) ... 106s Setting up libgcc-14-dev:s390x (14.2.0-16ubuntu1) ... 106s Setting up librust-rayon-dev:s390x (1.10.0-1) ... 106s Setting up librust-pkg-config-dev:s390x (0.3.31-1) ... 106s Setting up librust-os-pipe-dev:s390x (1.2.1-1) ... 106s Setting up librust-dlib-dev:s390x (0.5.2-2) ... 106s Setting up cpp-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 106s Setting up po-debconf (1.0.21+nmu1) ... 106s Setting up librust-quote-dev:s390x (1.0.37-1) ... 106s Setting up librust-libz-sys-dev:s390x (1.1.20-1) ... 106s Setting up librust-syn-dev:s390x (2.0.96-2) ... 106s Setting up librust-rand-core+std-dev:s390x (0.6.4-2) ... 106s Setting up libwayland-dev:s390x (1.23.1-1) ... 106s Setting up gcc-14-s390x-linux-gnu (14.2.0-16ubuntu1) ... 106s Setting up gcc-s390x-linux-gnu (4:14.1.0-2ubuntu1) ... 106s Setting up librust-sval-derive-dev:s390x (2.6.1-2) ... 106s Setting up librust-cc-dev:s390x (1.1.14-1) ... 106s Setting up librust-zeroize-derive-dev:s390x (1.4.2-1) ... 106s Setting up librust-syn-1-dev:s390x (1.0.109-3) ... 106s Setting up librust-no-panic-dev:s390x (0.1.32-1) ... 106s Setting up cpp (4:14.1.0-2ubuntu1) ... 106s Setting up librust-serde-derive-dev:s390x (1.0.217-1) ... 106s Setting up librust-zerocopy-derive-dev:s390x (0.7.34-1) ... 106s Setting up librust-valuable-derive-dev:s390x (0.1.0-1) ... 106s Setting up librust-serde-dev:s390x (1.0.217-1) ... 106s Setting up librust-bytemuck-derive-dev:s390x (1.5.0-2) ... 106s Setting up librust-thiserror-impl-1-dev:s390x (1.0.69-1) ... 106s Setting up librust-derive-arbitrary-dev:s390x (1.4.1-1) ... 106s Setting up librust-allocator-api2-dev:s390x (0.2.16-1) ... 106s Setting up librust-async-attributes-dev (1.1.2-7) ... 106s Setting up librust-thiserror-1-dev:s390x (1.0.69-1) ... 106s Setting up librust-proptest-derive-dev:s390x (0.4.0-1) ... 106s Setting up librust-tracing-attributes-dev:s390x (0.1.27-1) ... 106s Setting up librust-encoding-rs-dev:s390x (0.8.35-1) ... 106s Setting up librust-serde-fmt-dev (1.0.3-4) ... 106s Setting up librust-portable-atomic-dev:s390x (1.10.0-3) ... 106s Setting up librust-tokio-macros-dev:s390x (2.5.0-1) ... 106s Setting up librust-flate2-dev:s390x (1.0.34-1) ... 106s Setting up librust-lock-api-dev:s390x (0.4.12-1) ... 106s Setting up librust-derive-new-dev:s390x (0.5.8-1) ... 106s Setting up librust-sval-dev:s390x (2.6.1-2) ... 106s Setting up librust-itoa-dev:s390x (1.0.14-1) ... 106s Setting up gcc-14 (14.2.0-16ubuntu1) ... 106s Setting up librust-bytes-dev:s390x (1.9.0-1) ... 106s Setting up librust-rand-core+serde-dev:s390x (0.6.4-2) ... 106s Setting up librust-sval-ref-dev:s390x (2.6.1-1) ... 106s Setting up librust-fixedbitset-dev:s390x (0.4.2-1) ... 106s Setting up librust-zerocopy-dev:s390x (0.7.34-1) ... 106s Setting up librust-bytemuck-dev:s390x (1.21.0-1) ... 106s Setting up librust-bit-vec-dev:s390x (0.8.0-1) ... 106s Setting up librust-zeroize-dev:s390x (1.8.1-1) ... 106s Setting up librust-slab-dev:s390x (0.4.9-1) ... 106s Setting up librust-arbitrary-dev:s390x (1.4.1-1) ... 106s Setting up librust-valuable-dev:s390x (0.1.0-4) ... 106s Setting up librust-serde-test-dev:s390x (1.0.171-1) ... 106s Setting up librust-bit-set-dev:s390x (0.8.0-1) ... 106s Setting up librust-concurrent-queue-dev:s390x (2.5.0-4) ... 106s Setting up librust-erased-serde-dev:s390x (0.3.31-1) ... 106s Setting up librust-generic-array-dev:s390x (0.14.7-1) ... 106s Setting up librust-ppv-lite86-dev:s390x (0.2.20-1) ... 106s Setting up librust-rand-chacha-dev:s390x (0.3.1-2) ... 106s Setting up librust-spin-dev:s390x (0.9.8-4) ... 106s Setting up librust-sval-dynamic-dev:s390x (2.6.1-1) ... 106s Setting up librust-async-task-dev (4.7.1-4) ... 106s Setting up librust-crypto-common-dev:s390x (0.1.6-1) ... 106s Setting up librust-futures-core-dev:s390x (0.3.31-1) ... 106s Setting up librust-lazy-static-dev:s390x (1.5.0-1) ... 106s Setting up libtool (2.5.4-3build1) ... 106s Setting up librust-sval-buffer-dev:s390x (2.6.1-1) ... 106s Setting up librust-event-listener-dev (5.4.0-3) ... 106s Setting up librust-smallvec-dev:s390x (1.13.2-1) ... 106s Setting up librust-sval-fmt-dev:s390x (2.6.1-1) ... 106s Setting up librust-const-oid-dev:s390x (0.9.6-1) ... 106s Setting up gcc (4:14.1.0-2ubuntu1) ... 106s Setting up dh-autoreconf (20) ... 106s Setting up librust-block-buffer-dev:s390x (0.10.2-2) ... 106s Setting up librust-bitflags-dev:s390x (2.8.0-1) ... 106s Setting up rustc-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 106s Setting up librust-regex-syntax-dev:s390x (0.8.5-1) ... 106s Setting up rustc (1.84.0ubuntu1) ... 106s Setting up librust-parking-lot-core-dev:s390x (0.9.10-1) ... 106s Setting up librust-once-cell-dev:s390x (1.20.2-1) ... 106s Setting up librust-digest-dev:s390x (0.10.7-2) ... 106s Setting up librust-nix-dev:s390x (0.29.0-2) ... 106s Setting up librust-sval-serde-dev:s390x (2.6.1-1) ... 106s Setting up librust-parking-lot-dev:s390x (0.12.3-1) ... 106s Setting up cargo-1.84 (1.84.0+dfsg0ubuntu1-0ubuntu1) ... 106s Setting up librust-event-listener-strategy-dev:s390x (0.5.3-1) ... 106s Setting up librust-const-random-macro-dev:s390x (0.1.16-2) ... 106s Setting up librust-const-random-dev:s390x (0.1.17-2) ... 106s Setting up debhelper (13.23ubuntu1) ... 106s Setting up librust-ahash-dev (0.8.11-9) ... 106s Setting up librust-async-channel-dev (2.3.1-9) ... 106s Setting up librust-tracing-core-dev:s390x (0.1.32-1) ... 106s Setting up cargo (1.84.0ubuntu1) ... 106s Setting up dh-cargo (31ubuntu4) ... 106s Setting up librust-async-lock-dev (3.4.0-5) ... 106s Setting up librust-rustix-dev:s390x (0.38.37-1) ... 106s Setting up librust-value-bag-sval2-dev:s390x (1.9.0-1) ... 106s Setting up librust-tempfile-dev:s390x (3.15.0-1) ... 106s Setting up librust-rusty-fork-dev:s390x (0.3.0-1) ... 106s Setting up librust-hashbrown-dev:s390x (0.14.5-5) ... 106s Setting up librust-rusty-fork+wait-timeout-dev:s390x (0.3.0-1) ... 106s Setting up librust-indexmap-dev:s390x (2.7.0-1) ... 106s Setting up librust-petgraph-dev:s390x (0.6.4-1) ... 106s Setting up librust-gimli-dev:s390x (0.31.1-2) ... 106s Setting up librust-memchr-dev:s390x (2.7.4-1) ... 106s Setting up librust-nom-dev:s390x (7.1.3-1) ... 106s Setting up librust-futures-lite-dev:s390x (2.3.0-2) ... 106s Setting up librust-serde-json-dev:s390x (1.0.133-1) ... 106s Setting up librust-async-executor-dev (1.13.1-2) ... 106s Setting up librust-nom+std-dev:s390x (7.1.3-1) ... 106s Setting up librust-tree-magic-mini-dev:s390x (3.1.6-1) ... 106s Setting up librust-value-bag-serde1-dev:s390x (1.9.0-1) ... 106s Setting up librust-value-bag-dev:s390x (1.9.0-1) ... 106s Setting up librust-log-dev:s390x (0.4.22-1) ... 106s Setting up librust-kv-log-macro-dev (1.0.8-5) ... 106s Setting up librust-tracing-dev:s390x (0.1.40-1) ... 106s Setting up librust-polling-dev:s390x (3.4.0-1) ... 106s Setting up librust-async-io-dev:s390x (2.3.3-4) ... 106s Setting up librust-blocking-dev (1.6.1-6) ... 106s Setting up librust-rand-dev:s390x (0.8.5-1) ... 106s Setting up librust-mio-dev:s390x (1.0.2-3) ... 106s Setting up librust-wayland-sys-dev:s390x (0.31.6-1) ... 106s Setting up librust-twox-hash-dev:s390x (1.6.3-1) ... 106s Setting up librust-proptest-dev:s390x (1.6.0-1) ... 106s Setting up librust-wayland-backend-dev:s390x (0.3.8-1) ... 106s Setting up librust-ruzstd-dev:s390x (0.7.3-2) ... 106s Setting up librust-async-signal-dev:s390x (0.2.10-1) ... 106s Setting up librust-async-process-dev (2.3.0-2) ... 106s Setting up librust-object-dev:s390x (0.36.5-2) ... 106s Setting up librust-addr2line-dev:s390x (0.24.2-2) ... 106s Setting up librust-backtrace-dev:s390x (0.3.74-3) ... 106s Setting up librust-tokio-dev:s390x (1.43.0-1) ... 106s Setting up librust-async-global-executor-dev:s390x (2.4.1-5) ... 106s Setting up librust-async-std-dev (1.13.0-4) ... 106s Setting up librust-quick-xml-dev:s390x (0.36.1-2) ... 106s Setting up librust-io-lifetimes-dev:s390x (2.0.3-1) ... 106s Setting up librust-wayland-scanner-dev:s390x (0.31.6-1) ... 106s Setting up librust-wayland-client-dev:s390x (0.31.2-2) ... 106s Setting up librust-wayland-server-dev:s390x (0.31.1-2) ... 106s Setting up librust-wayland-protocols-dev:s390x (0.31.2-1) ... 106s Setting up librust-wayland-protocols-wlr-dev:s390x (0.2.0-2) ... 106s Setting up librust-wl-clipboard-rs-dev:s390x (0.8.0-2) ... 106s Processing triggers for libc-bin (2.40-4ubuntu1) ... 106s Processing triggers for man-db (2.13.0-1) ... 106s Processing triggers for install-info (7.1.1-1) ... 107s autopkgtest: DBG: testbed command exited with code 0 107s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wl-clipboard-rs-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.4cJX46/rust-wl-clipboard-rs:@-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.4cJX46/rust-wl-clipboard-rs%3A%40-packages.all /tmp/autopkgtest-work.oh9g3vy4/out/rust-wl-clipboard-rs%3A%40-packages.all 107s autopkgtest: DBG: got reply from testbed: ok 107s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/build.9ba/src already exists 107s autopkgtest [07:33:15]: test rust-wl-clipboard-rs:@: /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --all-features 107s autopkgtest [07:33:15]: test rust-wl-clipboard-rs:@: [----------------------- 107s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4cJX46/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-artifacts --chdir=/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/rust-wl-clipboard-rs:@-stderr --stdout=/tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-stdout --tmp=/tmp/autopkgtest.4cJX46/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 wl-clipboard-rs 0.8.0 --all-targets --all-features'"], kind test, sout raw, serr raw, env [] 108s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-artifacts 108s /tmp/autopkgtest.4cJX46/wrapper.sh: changing to directory: /tmp/autopkgtest.4cJX46/build.9ba/src 108s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 108s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 108s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 108s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 108s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: LANG=C.UTF-8 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LANGUAGE 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ADDRESS 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ALL 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_COLLATE 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_CTYPE 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_IDENTIFICATION 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MEASUREMENT 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MESSAGES 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MONETARY 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NAME 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NUMERIC 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_PAPER 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TELEPHONE 108s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TIME 108s /tmp/autopkgtest.4cJX46/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 108s /tmp/autopkgtest.4cJX46/wrapper.sh: pretending to be a login shell 108s /tmp/autopkgtest.4cJX46/wrapper.sh: will write standard error to /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-stderr 108s /tmp/autopkgtest.4cJX46/wrapper.sh: will write stdout to /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-stdout 108s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4cJX46/autopkgtest_tmp 108s /tmp/autopkgtest.4cJX46/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 108s /tmp/autopkgtest.4cJX46/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --all-features 108s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.VSLeqiyuLJ/out to stdout and file: /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-stdout 108s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.VSLeqiyuLJ/err to standard error and file: /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-stdout 108s /tmp/autopkgtest.4cJX46/wrapper.sh: writing script pid 3645 to /tmp/autopkgtest_script_pid 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: linking /usr/share/cargo/registry/* into /tmp/tmp.B7qMTxtiJf/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', '--all-features'],) {} 108s Compiling libc v0.2.169 108s Compiling proc-macro2 v1.0.92 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 108s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 108s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 108s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 108s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 108s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 108s Compiling unicode-ident v1.0.13 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 108s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 108s [libc 0.2.169] cargo:rerun-if-changed=build.rs 108s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 108s [libc 0.2.169] cargo:rustc-cfg=freebsd11 108s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 108s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 108s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 108s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern unicode_ident=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 109s warning: unused import: `crate::ntptimeval` 109s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 109s | 109s 5 | use crate::ntptimeval; 109s | ^^^^^^^^^^^^^^^^^ 109s | 109s = note: `#[warn(unused_imports)]` on by default 109s 109s Compiling quote v1.0.37 109s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 109s Compiling cfg-if v1.0.0 109s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/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] 109s parameters. Structured like an if-else chain, the first matching branch is the 109s item that gets emitted. 109s ' 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.B7qMTxtiJf/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.B7qMTxtiJf/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.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 109s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 109s | 109s = note: this feature is not stably supported; its behavior can change in the future 109s 109s warning: `cfg-if` (lib) generated 1 warning 109s Compiling autocfg v1.1.0 109s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 110s warning: `libc` (lib) generated 2 warnings (1 duplicate) 110s Compiling bitflags v2.8.0 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 110s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 110s Compiling rustix v0.38.37 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 110s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 110s Compiling once_cell v1.20.2 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 110s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 110s Compiling errno v0.3.8 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 110s warning: unexpected `cfg` condition value: `bitrig` 110s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 110s | 110s 77 | target_os = "bitrig", 110s | ^^^^^^^^^^^^^^^^^^^^ 110s | 110s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 110s = note: see for more information about checking conditional configuration 110s = note: `#[warn(unexpected_cfgs)]` on by default 110s 110s warning: `errno` (lib) generated 2 warnings (1 duplicate) 110s Compiling linux-raw-sys v0.4.14 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 110s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 110s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 110s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 110s [rustix 0.38.37] cargo:rustc-cfg=libc 110s [rustix 0.38.37] cargo:rustc-cfg=linux_like 110s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 110s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 110s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 110s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 110s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 110s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 110s Compiling memoffset v0.8.0 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern autocfg=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 110s Compiling syn v2.0.96 110s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 111s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 111s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c0552d419ea96692 -C extra-filename=-c0552d419ea96692 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 113s Compiling shlex v1.3.0 113s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 113s warning: unexpected `cfg` condition name: `manual_codegen_check` 113s --> /tmp/tmp.B7qMTxtiJf/registry/shlex-1.3.0/src/bytes.rs:353:12 113s | 113s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 113s | ^^^^^^^^^^^^^^^^^^^^ 113s | 113s = 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` 113s = help: consider using a Cargo feature instead 113s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 113s [lints.rust] 113s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 113s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 113s = note: see for more information about checking conditional configuration 113s = note: `#[warn(unexpected_cfgs)]` on by default 113s 113s warning: `shlex` (lib) generated 1 warning 113s Compiling pkg-config v0.3.31 113s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 113s Cargo build scripts. 113s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 114s warning: unreachable expression 114s --> /tmp/tmp.B7qMTxtiJf/registry/pkg-config-0.3.31/src/lib.rs:596:9 114s | 114s 592 | return true; 114s | ----------- any code following this expression is unreachable 114s ... 114s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 114s 597 | | // don't use pkg-config if explicitly disabled 114s 598 | | Some(ref val) if val == "0" => false, 114s 599 | | Some(_) => true, 114s ... | 114s 605 | | } 114s 606 | | } 114s | |_________^ unreachable expression 114s | 114s = note: `#[warn(unreachable_code)]` on by default 114s 114s warning: `pkg-config` (lib) generated 1 warning 114s Compiling wayland-sys v0.31.6 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6/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="client"' --cfg 'feature="dlopen"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="once_cell"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=604796f9df417748 -C extra-filename=-604796f9df417748 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/wayland-sys-604796f9df417748 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern pkg_config=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 114s Compiling cc v1.1.14 114s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 114s C compiler to compile native C code into a static archive to be linked into Rust 114s code. 114s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern shlex=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 115s warning: `rustix` (lib) generated 1 warning (1 duplicate) 115s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/memoffset-b637076bbed49000/build-script-build` 115s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 115s [memoffset 0.8.0] | 115s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 115s [memoffset 0.8.0] 115s [memoffset 0.8.0] warning: 1 warning emitted 115s [memoffset 0.8.0] 115s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 115s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 115s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 115s [memoffset 0.8.0] cargo:rustc-cfg=doctests 115s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 115s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 115s Compiling getrandom v0.2.15 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern cfg_if=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 115s warning: unexpected `cfg` condition value: `js` 115s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 115s | 115s 334 | } else if #[cfg(all(feature = "js", 115s | ^^^^^^^^^^^^^^ 115s | 115s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 115s = help: consider adding `js` as a feature in `Cargo.toml` 115s = note: see for more information about checking conditional configuration 115s = note: `#[warn(unexpected_cfgs)]` on by default 115s 115s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 115s Compiling libloading v0.8.5 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/libloading-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='Simonas Kazlauskas ' CARGO_PKG_DESCRIPTION='Bindings around the platform'\''s dynamic library loading primitives with greatly improved memory safety.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libloading CARGO_PKG_README=README.mkd CARGO_PKG_REPOSITORY='https://github.com/nagisa/rust_libloading/' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/libloading-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c7408bf7f2c3ff44 -C extra-filename=-c7408bf7f2c3ff44 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern cfg_if=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:39:13 115s | 115s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = 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` 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s = note: requested on the command line with `-W unexpected-cfgs` 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:45:26 115s | 115s 45 | #[cfg(any(unix, windows, libloading_docs))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:49:26 115s | 115s 49 | #[cfg(any(unix, windows, libloading_docs))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:20:17 115s | 115s 20 | #[cfg(any(unix, libloading_docs))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:21:12 115s | 115s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:25:20 115s | 115s 25 | #[cfg(any(windows, libloading_docs))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 115s | 115s 3 | #[cfg(all(libloading_docs, not(unix)))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 115s | 115s 5 | #[cfg(any(not(libloading_docs), unix))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 115s | 115s 46 | #[cfg(all(libloading_docs, not(unix)))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 115s | 115s 55 | #[cfg(any(not(libloading_docs), unix))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:1:7 115s | 115s 1 | #[cfg(libloading_docs)] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:3:15 115s | 115s 3 | #[cfg(all(not(libloading_docs), unix))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:5:15 115s | 115s 5 | #[cfg(all(not(libloading_docs), windows))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:15:12 115s | 115s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `libloading_docs` 115s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:197:12 115s | 115s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 115s | ^^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: `libloading` (lib) generated 16 warnings (1 duplicate) 115s Compiling dlib v0.5.2 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=dlib CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/dlib-0.5.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/dlib-0.5.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Helper macros for handling manually loading optional system libraries.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dlib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/elinorbgr/dlib' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name dlib --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/dlib-0.5.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=71d2b98a05a8f9d2 -C extra-filename=-71d2b98a05a8f9d2 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern libloading=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibloading-c7408bf7f2c3ff44.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 115s warning: `dlib` (lib) generated 1 warning (1 duplicate) 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 115s warning: unexpected `cfg` condition name: `stable_const` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 115s | 115s 60 | all(feature = "unstable_const", not(stable_const)), 115s | ^^^^^^^^^^^^ 115s | 115s = 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` 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s = note: `#[warn(unexpected_cfgs)]` on by default 115s 115s warning: unexpected `cfg` condition name: `doctests` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 115s | 115s 66 | #[cfg(doctests)] 115s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `doctests` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 115s | 115s 69 | #[cfg(doctests)] 115s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `raw_ref_macros` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 115s | 115s 22 | #[cfg(raw_ref_macros)] 115s | ^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `raw_ref_macros` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 115s | 115s 30 | #[cfg(not(raw_ref_macros))] 115s | ^^^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 115s | 115s 57 | #[cfg(allow_clippy)] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 115s | 115s 69 | #[cfg(not(allow_clippy))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 115s | 115s 90 | #[cfg(allow_clippy)] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 115s | 115s 100 | #[cfg(not(allow_clippy))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 115s | 115s 125 | #[cfg(allow_clippy)] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `allow_clippy` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 115s | 115s 141 | #[cfg(not(allow_clippy))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `tuple_ty` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 115s | 115s 183 | #[cfg(tuple_ty)] 115s | ^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `maybe_uninit` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 115s | 115s 23 | #[cfg(maybe_uninit)] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `maybe_uninit` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 115s | 115s 37 | #[cfg(not(maybe_uninit))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `stable_const` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 115s | 115s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `stable_const` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 115s | 115s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 115s | ^^^^^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: unexpected `cfg` condition name: `tuple_ty` 115s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 115s | 115s 121 | #[cfg(tuple_ty)] 115s | ^^^^^^^^ 115s | 115s = help: consider using a Cargo feature instead 115s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 115s [lints.rust] 115s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 115s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 115s = note: see for more information about checking conditional configuration 115s 115s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 115s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT=1 CARGO_FEATURE_DLOPEN=1 CARGO_FEATURE_LIBC=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_ONCE_CELL=1 CARGO_FEATURE_SERVER=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-743183c32baea120/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/wayland-sys-604796f9df417748/build-script-build` 115s Compiling log v0.4.22 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 115s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/log-0.4.22/src/lib.rs --error-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("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 115s warning: `log` (lib) generated 1 warning (1 duplicate) 115s Compiling memchr v2.7.4 115s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 115s 1, 2 or 3 byte search and single substring search. 115s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 116s Compiling quick-xml v0.36.1 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern memchr=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 116s warning: unexpected `cfg` condition value: `document-features` 116s --> /tmp/tmp.B7qMTxtiJf/registry/quick-xml-0.36.1/src/lib.rs:42:5 116s | 116s 42 | feature = "document-features", 116s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 116s | 116s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 116s = help: consider adding `document-features` as a feature in `Cargo.toml` 116s = note: see for more information about checking conditional configuration 116s = note: `#[warn(unexpected_cfgs)]` on by default 116s 116s warning: elided lifetime has a name 116s --> /tmp/tmp.B7qMTxtiJf/registry/quick-xml-0.36.1/src/writer.rs:146:73 116s | 116s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 116s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 116s | 116s = note: `#[warn(elided_named_lifetimes)]` on by default 116s 116s Compiling wayland-backend v0.3.8 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="dlopen"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=9e6a6329414faa80 -C extra-filename=-9e6a6329414faa80 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/wayland-backend-9e6a6329414faa80 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern cc=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 116s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT_SYSTEM=1 CARGO_FEATURE_DLOPEN=1 CARGO_FEATURE_SERVER_SYSTEM=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-86de0e6776da9d2f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/wayland-backend-9e6a6329414faa80/build-script-build` 116s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 116s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-743183c32baea120/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="dlopen"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="once_cell"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=14313f4b3e69f8e8 -C extra-filename=-14313f4b3e69f8e8 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern dlib=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libdlib-71d2b98a05a8f9d2.rmeta --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern log=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rmeta --extern memoffset=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.rmeta --extern once_cell=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 117s warning: `quick-xml` (lib) generated 2 warnings 117s Compiling zerocopy-derive v0.7.34 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=421d942aa06bb9ce -C extra-filename=-421d942aa06bb9ce --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 117s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 117s Compiling downcast-rs v1.2.0 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 117s parameters, associated types, and type constraints. 117s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 117s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 117s Compiling smallvec v1.13.2 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 117s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 117s Compiling scoped-tls v1.0.1 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=scoped_tls CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/scoped-tls-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/scoped-tls-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Library implementation of the standard library'\''s old `scoped_thread_local'\!'` 117s macro for providing scoped access to thread local storage (TLS) so any type can 117s be stored into TLS. 117s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=scoped-tls CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_RUST_VERSION=1.59 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.B7qMTxtiJf/target/debug/deps rustc --crate-name scoped_tls --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/scoped-tls-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=93e06da5b10a2769 -C extra-filename=-93e06da5b10a2769 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 117s warning: `scoped-tls` (lib) generated 1 warning (1 duplicate) 117s Compiling byteorder v1.5.0 117s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 118s Compiling io-lifetimes v2.0.3 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 118s Compiling zerocopy v0.7.34 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=3741d75984c9d7af -C extra-filename=-3741d75984c9d7af --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern byteorder=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libzerocopy_derive-421d942aa06bb9ce.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 118s | 118s 597 | let remainder = t.addr() % mem::align_of::(); 118s | ^^^^^^^^^^^^^^^^^^ 118s | 118s note: the lint level is defined here 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 118s | 118s 174 | unused_qualifications, 118s | ^^^^^^^^^^^^^^^^^^^^^ 118s help: remove the unnecessary path segments 118s | 118s 597 - let remainder = t.addr() % mem::align_of::(); 118s 597 + let remainder = t.addr() % align_of::(); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 118s | 118s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 118s | ^^^^^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 118s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 118s | 118s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 118s | ^^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 118s 488 + align: match NonZeroUsize::new(align_of::()) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 118s | 118s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 118s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 118s | 118s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 118s | ^^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 118s 511 + align: match NonZeroUsize::new(align_of::()) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 118s | 118s 517 | _elem_size: mem::size_of::(), 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 517 - _elem_size: mem::size_of::(), 118s 517 + _elem_size: size_of::(), 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 118s | 118s 1418 | let len = mem::size_of_val(self); 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 1418 - let len = mem::size_of_val(self); 118s 1418 + let len = size_of_val(self); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 118s | 118s 2714 | let len = mem::size_of_val(self); 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 2714 - let len = mem::size_of_val(self); 118s 2714 + let len = size_of_val(self); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 118s | 118s 2789 | let len = mem::size_of_val(self); 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 2789 - let len = mem::size_of_val(self); 118s 2789 + let len = size_of_val(self); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 118s | 118s 2863 | if bytes.len() != mem::size_of_val(self) { 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 2863 - if bytes.len() != mem::size_of_val(self) { 118s 2863 + if bytes.len() != size_of_val(self) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 118s | 118s 2920 | let size = mem::size_of_val(self); 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 2920 - let size = mem::size_of_val(self); 118s 2920 + let size = size_of_val(self); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 118s | 118s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 118s | ^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 118s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 118s | 118s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 118s | 118s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 118s | 118s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 118s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 118s | 118s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 118s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 118s | 118s 4221 | .checked_rem(mem::size_of::()) 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4221 - .checked_rem(mem::size_of::()) 118s 4221 + .checked_rem(size_of::()) 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 118s | 118s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 118s 4243 + let expected_len = match size_of::().checked_mul(count) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 118s | 118s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 118s 4268 + let expected_len = match size_of::().checked_mul(count) { 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 118s | 118s 4795 | let elem_size = mem::size_of::(); 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4795 - let elem_size = mem::size_of::(); 118s 4795 + let elem_size = size_of::(); 118s | 118s 118s warning: unnecessary qualification 118s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 118s | 118s 4825 | let elem_size = mem::size_of::(); 118s | ^^^^^^^^^^^^^^^^^ 118s | 118s help: remove the unnecessary path segments 118s | 118s 4825 - let elem_size = mem::size_of::(); 118s 4825 + let elem_size = size_of::(); 118s | 118s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 118s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-86de0e6776da9d2f/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="dlopen"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=7023ae197d2e1d75 -C extra-filename=-7023ae197d2e1d75 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern downcast_rs=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern scoped_tls=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libscoped_tls-93e06da5b10a2769.rmeta --extern smallvec=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-14313f4b3e69f8e8.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 118s warning: unexpected `cfg` condition value: `rwh_06` 118s --> /usr/share/cargo/registry/wayland-backend-0.3.8/src/sys/mod.rs:132:11 118s | 118s 132 | #[cfg(all(feature = "rwh_06", feature = "client_system"))] 118s | ^^^^^^^^^^^^^^^^^^ 118s | 118s = note: expected values for `feature` are: `client_system`, `dlopen`, `log`, `raw-window-handle`, and `server_system` 118s = help: consider adding `rwh_06` as a feature in `Cargo.toml` 118s = note: see for more information about checking conditional configuration 118s = note: `#[warn(unexpected_cfgs)]` on by default 118s 118s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 118s Compiling wayland-scanner v0.31.6 118s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 120s warning: `wayland-backend` (lib) generated 2 warnings (1 duplicate) 120s Compiling rand_core v0.6.4 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 120s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern getrandom=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 120s | 120s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 120s | ^^^^^^^ 120s | 120s = 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` 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s = note: `#[warn(unexpected_cfgs)]` on by default 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 120s | 120s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 120s | 120s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 120s | 120s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 120s | 120s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 120s | 120s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 120s Compiling syn v1.0.109 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/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="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=ae566e665d1cad87 -C extra-filename=-ae566e665d1cad87 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/syn-ae566e665d1cad87 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLONE_IMPLS=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_FULL=1 CARGO_FEATURE_PARSING=1 CARGO_FEATURE_PRINTING=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_FEATURE_QUOTE=1 CARGO_FEATURE_VISIT=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/debug/build/syn-a11c9578ec111a71/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/syn-ae566e665d1cad87/build-script-build` 120s [syn 1.0.109] cargo:rustc-cfg=syn_disable_nightly_tests 120s Compiling ppv-lite86 v0.2.20 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=d52b670bf7bd562c -C extra-filename=-d52b670bf7bd562c --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern zerocopy=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-3741d75984c9d7af.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 120s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 120s warning: unexpected `cfg` condition name: `wasi_ext` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 120s | 120s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 120s | ^^^^^^^^ 120s | 120s = 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` 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s = note: `#[warn(unexpected_cfgs)]` on by default 120s 120s warning: unexpected `cfg` condition name: `doc_cfg` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 120s | 120s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 120s | ^^^^^^^ 120s | 120s = help: consider using a Cargo feature instead 120s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 120s [lints.rust] 120s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 120s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 120s | 120s 239 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 120s | 120s 242 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 120s | 120s 245 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 120s | 120s 248 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 120s | 120s 251 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: unexpected `cfg` condition value: `async_std` 120s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 120s | 120s 254 | #[cfg(feature = "async_std")] 120s | ^^^^^^^^^^----------- 120s | | 120s | help: there is a expected value with a similar name: `"async-std"` 120s | 120s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 120s = help: consider adding `async_std` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s Compiling num-traits v0.2.19 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=8f779d9fad25b2ca -C extra-filename=-8f779d9fad25b2ca --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/num-traits-8f779d9fad25b2ca -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern autocfg=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 120s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 120s Compiling fastrand v2.1.1 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 120s warning: unexpected `cfg` condition value: `js` 120s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 120s | 120s 202 | feature = "js" 120s | ^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `alloc`, `default`, and `std` 120s = help: consider adding `js` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s = note: `#[warn(unexpected_cfgs)]` on by default 120s 120s warning: unexpected `cfg` condition value: `js` 120s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 120s | 120s 214 | not(feature = "js") 120s | ^^^^^^^^^^^^^^ 120s | 120s = note: expected values for `feature` are: `alloc`, `default`, and `std` 120s = help: consider adding `js` as a feature in `Cargo.toml` 120s = note: see for more information about checking conditional configuration 120s 120s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 120s Compiling cfg_aliases v0.2.1 120s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 121s Compiling equivalent v1.0.1 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s Compiling hashbrown v0.14.5 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 121s Compiling fnv v1.0.7 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/fnv-1.0.7 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/fnv-1.0.7/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Fowler–Noll–Vo hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 / MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fnv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-fnv' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.7 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name fnv --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/fnv-1.0.7/lib.rs --error-format=json --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=a68fdaac9d04d051 -C extra-filename=-a68fdaac9d04d051 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s warning: `fnv` (lib) generated 1 warning (1 duplicate) 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/num-traits-8f779d9fad25b2ca/build-script-build` 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 121s | 121s 14 | feature = "nightly", 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s = note: `#[warn(unexpected_cfgs)]` on by default 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 121s | 121s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 121s | 121s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 121s | 121s 49 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 121s | 121s 59 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 121s | 121s 65 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 121s | 121s 53 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 121s | 121s 55 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 121s | 121s 57 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 121s | 121s 3549 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 121s | 121s 3661 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 121s | 121s 3678 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 121s | 121s 4304 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 121s | 121s 4319 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 121s | 121s 7 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 121s | 121s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 121s | 121s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 121s | 121s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `rkyv` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 121s | 121s 3 | #[cfg(feature = "rkyv")] 121s | ^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `rkyv` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 121s | 121s 242 | #[cfg(not(feature = "nightly"))] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 121s | 121s 255 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 121s | 121s 6517 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 121s | 121s 6523 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 121s | 121s 6591 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 121s | 121s 6597 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 121s | 121s 6651 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 121s | 121s 6657 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 121s | 121s 1359 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 121s | 121s 1365 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 121s | 121s 1383 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `nightly` 121s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 121s | 121s 1389 | #[cfg(feature = "nightly")] 121s | ^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 121s = help: consider adding `nightly` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 121s [num-traits 0.2.19] | 121s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 121s [num-traits 0.2.19] 121s [num-traits 0.2.19] warning: 1 warning emitted 121s [num-traits 0.2.19] 121s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 121s [num-traits 0.2.19] | 121s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 121s [num-traits 0.2.19] 121s [num-traits 0.2.19] warning: 1 warning emitted 121s [num-traits 0.2.19] 121s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 121s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 121s Compiling nix v0.29.0 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=18c9c6ab59c87315 -C extra-filename=-18c9c6ab59c87315 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/nix-18c9c6ab59c87315 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern cfg_aliases=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 121s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 121s Compiling indexmap v2.7.0 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern equivalent=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s warning: unexpected `cfg` condition value: `borsh` 121s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 121s | 121s 117 | #[cfg(feature = "borsh")] 121s | ^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 121s = help: consider adding `borsh` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s = note: `#[warn(unexpected_cfgs)]` on by default 121s 121s warning: unexpected `cfg` condition value: `rustc-rayon` 121s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 121s | 121s 131 | #[cfg(feature = "rustc-rayon")] 121s | ^^^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 121s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `quickcheck` 121s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 121s | 121s 38 | #[cfg(feature = "quickcheck")] 121s | ^^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 121s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `rustc-rayon` 121s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 121s | 121s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 121s | ^^^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 121s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s warning: unexpected `cfg` condition value: `rustc-rayon` 121s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 121s | 121s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 121s | ^^^^^^^^^^^^^^^^^^^^^^^ 121s | 121s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 121s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 121s = note: see for more information about checking conditional configuration 121s 121s Compiling tempfile v3.15.0 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/tempfile-3.15.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="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=7264ab473cee172b -C extra-filename=-7264ab473cee172b --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern cfg_if=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern fastrand=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern getrandom=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --extern once_cell=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern rustix=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 121s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 121s Compiling wayland-client v0.31.2 121s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_client CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-client-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-client-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, client side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-client CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wayland_client --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-client-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=aaaacc345f456d89 -C extra-filename=-aaaacc345f456d89 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern rustix=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_scanner=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 122s warning: `tempfile` (lib) generated 1 warning (1 duplicate) 122s Compiling wayland-server v0.31.1 122s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wayland_server --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-server-0.31.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("log"))' -C metadata=d1a3211630d4b2b9 -C extra-filename=-d1a3211630d4b2b9 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern downcast_rs=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern io_lifetimes=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rmeta --extern rustix=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_scanner=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/lib.rs:165:13 122s | 122s 165 | #![cfg_attr(coverage, feature(coverage_attribute))] 122s | ^^^^^^^^ 122s | 122s = 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` 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s = note: `#[warn(unexpected_cfgs)]` on by default 122s 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:123:16 122s | 122s 123 | #[cfg_attr(coverage, coverage(off))] 122s | ^^^^^^^^ 122s | 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:197:16 122s | 122s 197 | #[cfg_attr(coverage, coverage(off))] 122s | ^^^^^^^^ 122s | 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:347:16 122s | 122s 347 | #[cfg_attr(coverage, coverage(off))] 122s | ^^^^^^^^ 122s | 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:589:16 122s | 122s 589 | #[cfg_attr(coverage, coverage(off))] 122s | ^^^^^^^^ 122s | 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s 122s warning: unexpected `cfg` condition name: `coverage` 122s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:696:16 122s | 122s 696 | #[cfg_attr(coverage, coverage(off))] 122s | ^^^^^^^^ 122s | 122s = help: consider using a Cargo feature instead 122s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 122s [lints.rust] 122s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 122s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 122s = note: see for more information about checking conditional configuration 122s 123s warning: `wayland-server` (lib) generated 1 warning (1 duplicate) 123s Compiling rand_chacha v0.3.1 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 123s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=c588a1d47b064f6f -C extra-filename=-c588a1d47b064f6f --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern ppv_lite86=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-d52b670bf7bd562c.rmeta --extern rand_core=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 123s warning: `wayland-client` (lib) generated 7 warnings (1 duplicate) 123s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/debug/build/syn-a11c9578ec111a71/out rustc --crate-name syn --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=d2c69931b37190d8 -C extra-filename=-d2c69931b37190d8 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg syn_disable_nightly_tests` 124s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 124s Compiling wait-timeout v0.2.0 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wait_timeout CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wait-timeout-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wait-timeout-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A crate to wait on a child process with a timeout specified across Unix and 124s Windows platforms. 124s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wait-timeout CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wait_timeout --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/wait-timeout-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c8041ffbea216b96 -C extra-filename=-c8041ffbea216b96 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 124s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 124s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:27:23 124s | 124s 27 | use std::sync::{Once, ONCE_INIT, Mutex}; 124s | ^^^^^^^^^ 124s | 124s note: the lint level is defined here 124s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/lib.rs:31:23 124s | 124s 31 | #![deny(missing_docs, warnings)] 124s | ^^^^^^^^ 124s = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` 124s 124s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 124s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:32:21 124s | 124s 32 | static INIT: Once = ONCE_INIT; 124s | ^^^^^^^^^ 124s | 124s help: replace the use of the deprecated constant 124s | 124s 32 | static INIT: Once = Once::new(); 124s | ~~~~~~~~~~~ 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:254:13 124s | 124s 254 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 124s | ^^^^^^^ 124s | 124s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: `#[warn(unexpected_cfgs)]` on by default 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:430:12 124s | 124s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:434:12 124s | 124s 434 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:455:12 124s | 124s 455 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:804:12 124s | 124s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:867:12 124s | 124s 867 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:887:12 124s | 124s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:916:12 124s | 124s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:959:12 124s | 124s 959 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/group.rs:136:12 124s | 124s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/group.rs:214:12 124s | 124s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/group.rs:269:12 124s | 124s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:561:12 124s | 124s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:569:12 124s | 124s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:881:11 124s | 124s 881 | #[cfg(not(syn_omit_await_from_token_macro))] 124s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:883:7 124s | 124s 883 | #[cfg(syn_omit_await_from_token_macro)] 124s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:394:24 124s | 124s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:398:24 124s | 124s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:406:24 124s | 124s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:414:24 124s | 124s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:418:24 124s | 124s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:426:24 124s | 124s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 556 | / define_punctuation_structs! { 124s 557 | | "_" pub struct Underscore/1 /// `_` 124s 558 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:271:24 124s | 124s 271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:275:24 124s | 124s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:283:24 124s | 124s 283 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:291:24 124s | 124s 291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:295:24 124s | 124s 295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:303:24 124s | 124s 303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:309:24 124s | 124s 309 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:317:24 124s | 124s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s ... 124s 652 | / define_keywords! { 124s 653 | | "abstract" pub struct Abstract /// `abstract` 124s 654 | | "as" pub struct As /// `as` 124s 655 | | "async" pub struct Async /// `async` 124s ... | 124s 704 | | "yield" pub struct Yield /// `yield` 124s 705 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:444:24 124s | 124s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:452:24 124s | 124s 452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:394:24 124s | 124s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:398:24 124s | 124s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:406:24 124s | 124s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:414:24 124s | 124s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:418:24 124s | 124s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:426:24 124s | 124s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | / define_punctuation! { 124s 708 | | "+" pub struct Add/1 /// `+` 124s 709 | | "+=" pub struct AddEq/2 /// `+=` 124s 710 | | "&" pub struct And/1 /// `&` 124s ... | 124s 753 | | "~" pub struct Tilde/1 /// `~` 124s 754 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:503:24 124s | 124s 503 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:507:24 124s | 124s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:515:24 124s | 124s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:523:24 124s | 124s 523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:527:24 124s | 124s 527 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/token.rs:535:24 124s | 124s 535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 756 | / define_delimiters! { 124s 757 | | "{" pub struct Brace /// `{...}` 124s 758 | | "[" pub struct Bracket /// `[...]` 124s 759 | | "(" pub struct Paren /// `(...)` 124s 760 | | " " pub struct Group /// None-delimited group 124s 761 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ident.rs:38:12 124s | 124s 38 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:463:12 124s | 124s 463 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:148:16 124s | 124s 148 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:329:16 124s | 124s 329 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:360:16 124s | 124s 360 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:336:1 124s | 124s 336 | / ast_enum_of_structs! { 124s 337 | | /// Content of a compile-time structured attribute. 124s 338 | | /// 124s 339 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 369 | | } 124s 370 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:377:16 124s | 124s 377 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:390:16 124s | 124s 390 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:417:16 124s | 124s 417 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:412:1 124s | 124s 412 | / ast_enum_of_structs! { 124s 413 | | /// Element of a compile-time attribute list. 124s 414 | | /// 124s 415 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 425 | | } 124s 426 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:165:16 124s | 124s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:213:16 124s | 124s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:223:16 124s | 124s 223 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:237:16 124s | 124s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:251:16 124s | 124s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:557:16 124s | 124s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:565:16 124s | 124s 565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:573:16 124s | 124s 573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:581:16 124s | 124s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:630:16 124s | 124s 630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:644:16 124s | 124s 644 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/attr.rs:654:16 124s | 124s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:9:16 124s | 124s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:36:16 124s | 124s 36 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:25:1 124s | 124s 25 | / ast_enum_of_structs! { 124s 26 | | /// Data stored within an enum variant or struct. 124s 27 | | /// 124s 28 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 47 | | } 124s 48 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:56:16 124s | 124s 56 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:68:16 124s | 124s 68 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:153:16 124s | 124s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:185:16 124s | 124s 185 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:173:1 124s | 124s 173 | / ast_enum_of_structs! { 124s 174 | | /// The visibility level of an item: inherited or `pub` or 124s 175 | | /// `pub(restricted)`. 124s 176 | | /// 124s ... | 124s 199 | | } 124s 200 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:207:16 124s | 124s 207 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:218:16 124s | 124s 218 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:230:16 124s | 124s 230 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:246:16 124s | 124s 246 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:275:16 124s | 124s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:286:16 124s | 124s 286 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:327:16 124s | 124s 327 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:299:20 124s | 124s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:315:20 124s | 124s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:423:16 124s | 124s 423 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:436:16 124s | 124s 436 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:445:16 124s | 124s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:454:16 124s | 124s 454 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:467:16 124s | 124s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:474:16 124s | 124s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/data.rs:481:16 124s | 124s 481 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:89:16 124s | 124s 89 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:90:20 124s | 124s 90 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:14:1 124s | 124s 14 | / ast_enum_of_structs! { 124s 15 | | /// A Rust expression. 124s 16 | | /// 124s 17 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 249 | | } 124s 250 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:256:16 124s | 124s 256 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:268:16 124s | 124s 268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:281:16 124s | 124s 281 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:294:16 124s | 124s 294 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:307:16 124s | 124s 307 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:321:16 124s | 124s 321 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:334:16 124s | 124s 334 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:346:16 124s | 124s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:359:16 124s | 124s 359 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:373:16 124s | 124s 373 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:387:16 124s | 124s 387 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:400:16 124s | 124s 400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:418:16 124s | 124s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:431:16 124s | 124s 431 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:444:16 124s | 124s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:464:16 124s | 124s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:480:16 124s | 124s 480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:495:16 124s | 124s 495 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:508:16 124s | 124s 508 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:523:16 124s | 124s 523 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:534:16 124s | 124s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:547:16 124s | 124s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:558:16 124s | 124s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:572:16 124s | 124s 572 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:588:16 124s | 124s 588 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:604:16 124s | 124s 604 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:616:16 124s | 124s 616 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:629:16 124s | 124s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:643:16 124s | 124s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:657:16 124s | 124s 657 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:672:16 124s | 124s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:687:16 124s | 124s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:699:16 124s | 124s 699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:711:16 124s | 124s 711 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:723:16 124s | 124s 723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:737:16 124s | 124s 737 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:749:16 124s | 124s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:761:16 124s | 124s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:775:16 124s | 124s 775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:850:16 124s | 124s 850 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:920:16 124s | 124s 920 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:968:16 124s | 124s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:982:16 124s | 124s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:999:16 124s | 124s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1021:16 124s | 124s 1021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1049:16 124s | 124s 1049 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1065:16 124s | 124s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:246:15 124s | 124s 246 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:784:40 124s | 124s 784 | #[cfg(all(feature = "parsing", not(syn_no_const_vec_new)))] 124s | ^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:838:19 124s | 124s 838 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1159:16 124s | 124s 1159 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1880:16 124s | 124s 1880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1975:16 124s | 124s 1975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2001:16 124s | 124s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2063:16 124s | 124s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2084:16 124s | 124s 2084 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2101:16 124s | 124s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2119:16 124s | 124s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2147:16 124s | 124s 2147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2165:16 124s | 124s 2165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2206:16 124s | 124s 2206 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2236:16 124s | 124s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2258:16 124s | 124s 2258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2326:16 124s | 124s 2326 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2349:16 124s | 124s 2349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2372:16 124s | 124s 2372 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2381:16 124s | 124s 2381 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2396:16 124s | 124s 2396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2405:16 124s | 124s 2405 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2414:16 124s | 124s 2414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2426:16 124s | 124s 2426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2496:16 124s | 124s 2496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2547:16 124s | 124s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2571:16 124s | 124s 2571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2582:16 124s | 124s 2582 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2594:16 124s | 124s 2594 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2648:16 124s | 124s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2678:16 124s | 124s 2678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2727:16 124s | 124s 2727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2759:16 124s | 124s 2759 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2801:16 124s | 124s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2818:16 124s | 124s 2818 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2832:16 124s | 124s 2832 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2846:16 124s | 124s 2846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2879:16 124s | 124s 2879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2292:28 124s | 124s 2292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s ... 124s 2309 | / impl_by_parsing_expr! { 124s 2310 | | ExprAssign, Assign, "expected assignment expression", 124s 2311 | | ExprAssignOp, AssignOp, "expected compound assignment expression", 124s 2312 | | ExprAwait, Await, "expected await expression", 124s ... | 124s 2322 | | ExprType, Type, "expected type ascription expression", 124s 2323 | | } 124s | |_____- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `impl_by_parsing_expr` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:1248:20 124s | 124s 1248 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "full", feature = "parsing"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2539:23 124s | 124s 2539 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2905:23 124s | 124s 2905 | #[cfg(not(syn_no_const_vec_new))] 124s | ^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2907:19 124s | 124s 2907 | #[cfg(syn_no_const_vec_new)] 124s | ^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2988:16 124s | 124s 2988 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:2998:16 124s | 124s 2998 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3008:16 124s | 124s 3008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3020:16 124s | 124s 3020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3035:16 124s | 124s 3035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3046:16 124s | 124s 3046 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3057:16 124s | 124s 3057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3072:16 124s | 124s 3072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3082:16 124s | 124s 3082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3091:16 124s | 124s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3099:16 124s | 124s 3099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3110:16 124s | 124s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3141:16 124s | 124s 3141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3153:16 124s | 124s 3153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3165:16 124s | 124s 3165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3180:16 124s | 124s 3180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3197:16 124s | 124s 3197 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3211:16 124s | 124s 3211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3233:16 124s | 124s 3233 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3244:16 124s | 124s 3244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3255:16 124s | 124s 3255 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3265:16 124s | 124s 3265 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3275:16 124s | 124s 3275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3291:16 124s | 124s 3291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3304:16 124s | 124s 3304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3317:16 124s | 124s 3317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3328:16 124s | 124s 3328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3338:16 124s | 124s 3338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3348:16 124s | 124s 3348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3358:16 124s | 124s 3358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3367:16 124s | 124s 3367 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3379:16 124s | 124s 3379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3390:16 124s | 124s 3390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3400:16 124s | 124s 3400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3409:16 124s | 124s 3409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3420:16 124s | 124s 3420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3431:16 124s | 124s 3431 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3441:16 124s | 124s 3441 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3451:16 124s | 124s 3451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3460:16 124s | 124s 3460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3478:16 124s | 124s 3478 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3491:16 124s | 124s 3491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3501:16 124s | 124s 3501 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3512:16 124s | 124s 3512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3522:16 124s | 124s 3522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3531:16 124s | 124s 3531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/expr.rs:3544:16 124s | 124s 3544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:296:5 124s | 124s 296 | doc_cfg, 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:307:5 124s | 124s 307 | doc_cfg, 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:318:5 124s | 124s 318 | doc_cfg, 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:14:16 124s | 124s 14 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:35:16 124s | 124s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:23:1 124s | 124s 23 | / ast_enum_of_structs! { 124s 24 | | /// A generic type parameter, lifetime, or const generic: `T: Into`, 124s 25 | | /// `'a: 'b`, `const LEN: usize`. 124s 26 | | /// 124s ... | 124s 45 | | } 124s 46 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:53:16 124s | 124s 53 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:69:16 124s | 124s 69 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:83:16 124s | 124s 83 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:363:20 124s | 124s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 404 | generics_wrapper_impls!(ImplGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:371:20 124s | 124s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 404 | generics_wrapper_impls!(ImplGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:382:20 124s | 124s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 404 | generics_wrapper_impls!(ImplGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:386:20 124s | 124s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 404 | generics_wrapper_impls!(ImplGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:394:20 124s | 124s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 404 | generics_wrapper_impls!(ImplGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:363:20 124s | 124s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 406 | generics_wrapper_impls!(TypeGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:371:20 124s | 124s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 406 | generics_wrapper_impls!(TypeGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:382:20 124s | 124s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 406 | generics_wrapper_impls!(TypeGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:386:20 124s | 124s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 406 | generics_wrapper_impls!(TypeGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:394:20 124s | 124s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 406 | generics_wrapper_impls!(TypeGenerics); 124s | ------------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:363:20 124s | 124s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 408 | generics_wrapper_impls!(Turbofish); 124s | ---------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:371:20 124s | 124s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 408 | generics_wrapper_impls!(Turbofish); 124s | ---------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:382:20 124s | 124s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 408 | generics_wrapper_impls!(Turbofish); 124s | ---------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:386:20 124s | 124s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 408 | generics_wrapper_impls!(Turbofish); 124s | ---------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:394:20 124s | 124s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 408 | generics_wrapper_impls!(Turbofish); 124s | ---------------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:426:16 124s | 124s 426 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:475:16 124s | 124s 475 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:470:1 124s | 124s 470 | / ast_enum_of_structs! { 124s 471 | | /// A trait or lifetime used as a bound on a type parameter. 124s 472 | | /// 124s 473 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 479 | | } 124s 480 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:487:16 124s | 124s 487 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:504:16 124s | 124s 504 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:517:16 124s | 124s 517 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:535:16 124s | 124s 535 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:524:1 124s | 124s 524 | / ast_enum_of_structs! { 124s 525 | | /// A single predicate in a `where` clause: `T: Deserialize<'de>`. 124s 526 | | /// 124s 527 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 545 | | } 124s 546 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:553:16 124s | 124s 553 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:570:16 124s | 124s 570 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:583:16 124s | 124s 583 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:347:9 124s | 124s 347 | doc_cfg, 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:597:16 124s | 124s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:660:16 124s | 124s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:687:16 124s | 124s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:725:16 124s | 124s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:747:16 124s | 124s 747 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:758:16 124s | 124s 758 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:812:16 124s | 124s 812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:856:16 124s | 124s 856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:905:16 124s | 124s 905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:916:16 124s | 124s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:940:16 124s | 124s 940 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:971:16 124s | 124s 971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:982:16 124s | 124s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1057:16 124s | 124s 1057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1207:16 124s | 124s 1207 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1217:16 124s | 124s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1229:16 124s | 124s 1229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1268:16 124s | 124s 1268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1300:16 124s | 124s 1300 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1310:16 124s | 124s 1310 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1325:16 124s | 124s 1325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1335:16 124s | 124s 1335 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1345:16 124s | 124s 1345 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/generics.rs:1354:16 124s | 124s 1354 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:19:16 124s | 124s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:20:20 124s | 124s 20 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:9:1 124s | 124s 9 | / ast_enum_of_structs! { 124s 10 | | /// Things that can appear directly inside of a module or scope. 124s 11 | | /// 124s 12 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 96 | | } 124s 97 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:103:16 124s | 124s 103 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:121:16 124s | 124s 121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:137:16 124s | 124s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:154:16 124s | 124s 154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:167:16 124s | 124s 167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:181:16 124s | 124s 181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:201:16 124s | 124s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:215:16 124s | 124s 215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:229:16 124s | 124s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:244:16 124s | 124s 244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:263:16 124s | 124s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:279:16 124s | 124s 279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:299:16 124s | 124s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:316:16 124s | 124s 316 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:333:16 124s | 124s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:348:16 124s | 124s 348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:477:16 124s | 124s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:467:1 124s | 124s 467 | / ast_enum_of_structs! { 124s 468 | | /// A suffix of an import tree in a `use` item: `Type as Renamed` or `*`. 124s 469 | | /// 124s 470 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 493 | | } 124s 494 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:500:16 124s | 124s 500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:512:16 124s | 124s 512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:522:16 124s | 124s 522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:534:16 124s | 124s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:544:16 124s | 124s 544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:561:16 124s | 124s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:562:20 124s | 124s 562 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:551:1 124s | 124s 551 | / ast_enum_of_structs! { 124s 552 | | /// An item within an `extern` block. 124s 553 | | /// 124s 554 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 600 | | } 124s 601 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:607:16 124s | 124s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:620:16 124s | 124s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:637:16 124s | 124s 637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:651:16 124s | 124s 651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:669:16 124s | 124s 669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:670:20 124s | 124s 670 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:659:1 124s | 124s 659 | / ast_enum_of_structs! { 124s 660 | | /// An item declaration within the definition of a trait. 124s 661 | | /// 124s 662 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 708 | | } 124s 709 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:715:16 124s | 124s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:731:16 124s | 124s 731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:744:16 124s | 124s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:761:16 124s | 124s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:779:16 124s | 124s 779 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:780:20 124s | 124s 780 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:769:1 124s | 124s 769 | / ast_enum_of_structs! { 124s 770 | | /// An item within an impl block. 124s 771 | | /// 124s 772 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 818 | | } 124s 819 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:825:16 124s | 124s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:844:16 124s | 124s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:858:16 124s | 124s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:876:16 124s | 124s 876 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:889:16 124s | 124s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:927:16 124s | 124s 927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:923:1 124s | 124s 923 | / ast_enum_of_structs! { 124s 924 | | /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. 124s 925 | | /// 124s 926 | | /// *This type is available only if Syn is built with the `"full"` feature.* 124s ... | 124s 938 | | } 124s 939 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:949:16 124s | 124s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:93:15 124s | 124s 93 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:381:19 124s | 124s 381 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:597:15 124s | 124s 597 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:705:15 124s | 124s 705 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:815:15 124s | 124s 815 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:976:16 124s | 124s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1237:16 124s | 124s 1237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1264:16 124s | 124s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1305:16 124s | 124s 1305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1338:16 124s | 124s 1338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1352:16 124s | 124s 1352 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1401:16 124s | 124s 1401 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1419:16 124s | 124s 1419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1500:16 124s | 124s 1500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1535:16 124s | 124s 1535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1564:16 124s | 124s 1564 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1584:16 124s | 124s 1584 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1680:16 124s | 124s 1680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1722:16 124s | 124s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1745:16 124s | 124s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1827:16 124s | 124s 1827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1843:16 124s | 124s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1859:16 124s | 124s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1903:16 124s | 124s 1903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1921:16 124s | 124s 1921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1971:16 124s | 124s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1995:16 124s | 124s 1995 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2019:16 124s | 124s 2019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2070:16 124s | 124s 2070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2144:16 124s | 124s 2144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2200:16 124s | 124s 2200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2260:16 124s | 124s 2260 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2290:16 124s | 124s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2319:16 124s | 124s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2392:16 124s | 124s 2392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2410:16 124s | 124s 2410 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2522:16 124s | 124s 2522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2603:16 124s | 124s 2603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2628:16 124s | 124s 2628 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2668:16 124s | 124s 2668 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2726:16 124s | 124s 2726 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:1817:23 124s | 124s 1817 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2251:23 124s | 124s 2251 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2592:27 124s | 124s 2592 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2771:16 124s | 124s 2771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2787:16 124s | 124s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2799:16 124s | 124s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2815:16 124s | 124s 2815 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2830:16 124s | 124s 2830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2843:16 124s | 124s 2843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2861:16 124s | 124s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2873:16 124s | 124s 2873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2888:16 124s | 124s 2888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2903:16 124s | 124s 2903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2929:16 124s | 124s 2929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2942:16 124s | 124s 2942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2964:16 124s | 124s 2964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:2979:16 124s | 124s 2979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3001:16 124s | 124s 3001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3023:16 124s | 124s 3023 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: `wait-timeout` (lib) generated 3 warnings (1 duplicate) 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 124s 1, 2 or 3 byte search and single substring search. 124s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3034:16 124s | 124s 3034 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3043:16 124s | 124s 3043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3050:16 124s | 124s 3050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3059:16 124s | 124s 3059 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3066:16 124s | 124s 3066 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3075:16 124s | 124s 3075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3091:16 124s | 124s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3110:16 124s | 124s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3130:16 124s | 124s 3130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3139:16 124s | 124s 3139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3155:16 124s | 124s 3155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3177:16 124s | 124s 3177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3193:16 124s | 124s 3193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3202:16 124s | 124s 3202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3212:16 124s | 124s 3212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3226:16 124s | 124s 3226 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3237:16 124s | 124s 3237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3273:16 124s | 124s 3273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/item.rs:3301:16 124s | 124s 3301 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/file.rs:80:16 124s | 124s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/file.rs:93:16 124s | 124s 93 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/file.rs:118:16 124s | 124s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lifetime.rs:127:16 124s | 124s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lifetime.rs:145:16 124s | 124s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:629:12 124s | 124s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:640:12 124s | 124s 640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:652:12 124s | 124s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:14:1 124s | 124s 14 | / ast_enum_of_structs! { 124s 15 | | /// A Rust literal such as a string or integer or boolean. 124s 16 | | /// 124s 17 | | /// # Syntax tree enum 124s ... | 124s 48 | | } 124s 49 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 703 | lit_extra_traits!(LitStr); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 703 | lit_extra_traits!(LitStr); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 703 | lit_extra_traits!(LitStr); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 704 | lit_extra_traits!(LitByteStr); 124s | ----------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 704 | lit_extra_traits!(LitByteStr); 124s | ----------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 704 | lit_extra_traits!(LitByteStr); 124s | ----------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 705 | lit_extra_traits!(LitByte); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 705 | lit_extra_traits!(LitByte); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 705 | lit_extra_traits!(LitByte); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 706 | lit_extra_traits!(LitChar); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 706 | lit_extra_traits!(LitChar); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 706 | lit_extra_traits!(LitChar); 124s | -------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 707 | lit_extra_traits!(LitInt); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | lit_extra_traits!(LitInt); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 707 | lit_extra_traits!(LitInt); 124s | ------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:666:20 124s | 124s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s ... 124s 708 | lit_extra_traits!(LitFloat); 124s | --------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:676:20 124s | 124s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 708 | lit_extra_traits!(LitFloat); 124s | --------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:684:20 124s | 124s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s ... 124s 708 | lit_extra_traits!(LitFloat); 124s | --------------------------- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:170:16 124s | 124s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:200:16 124s | 124s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:557:16 124s | 124s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:567:16 124s | 124s 567 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:577:16 124s | 124s 577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:587:16 124s | 124s 587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:597:16 124s | 124s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:607:16 124s | 124s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:617:16 124s | 124s 617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:744:16 124s | 124s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:816:16 124s | 124s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:827:16 124s | 124s 827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:838:16 124s | 124s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:849:16 124s | 124s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:860:16 124s | 124s 860 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:871:16 124s | 124s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:882:16 124s | 124s 882 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:900:16 124s | 124s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:907:16 124s | 124s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:914:16 124s | 124s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:921:16 124s | 124s 921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:928:16 124s | 124s 928 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:935:16 124s | 124s 935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:942:16 124s | 124s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_negative_literal_parse` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lit.rs:1568:15 124s | 124s 1568 | #[cfg(syn_no_negative_literal_parse)] 124s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_negative_literal_parse)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_negative_literal_parse)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:15:16 124s | 124s 15 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:29:16 124s | 124s 29 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:137:16 124s | 124s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:145:16 124s | 124s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:177:16 124s | 124s 177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/mac.rs:201:16 124s | 124s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:8:16 124s | 124s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:37:16 124s | 124s 37 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:57:16 124s | 124s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:70:16 124s | 124s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:83:16 124s | 124s 83 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:95:16 124s | 124s 95 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/derive.rs:231:16 124s | 124s 231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:6:16 124s | 124s 6 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:72:16 124s | 124s 72 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:130:16 124s | 124s 130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:165:16 124s | 124s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:188:16 124s | 124s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/op.rs:224:16 124s | 124s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:7:16 124s | 124s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:19:16 124s | 124s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:39:16 124s | 124s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:136:16 124s | 124s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:147:16 124s | 124s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:109:20 124s | 124s 109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:312:16 124s | 124s 312 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:321:16 124s | 124s 321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/stmt.rs:336:16 124s | 124s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:16:16 124s | 124s 16 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:17:20 124s | 124s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:5:1 124s | 124s 5 | / ast_enum_of_structs! { 124s 6 | | /// The possible types that a Rust value could have. 124s 7 | | /// 124s 8 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 124s ... | 124s 88 | | } 124s 89 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:96:16 124s | 124s 96 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:110:16 124s | 124s 110 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:128:16 124s | 124s 128 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:141:16 124s | 124s 141 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:153:16 124s | 124s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:164:16 124s | 124s 164 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:175:16 124s | 124s 175 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:186:16 124s | 124s 186 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:199:16 124s | 124s 199 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:211:16 124s | 124s 211 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:225:16 124s | 124s 225 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:239:16 124s | 124s 239 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:252:16 124s | 124s 252 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:264:16 124s | 124s 264 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:276:16 124s | 124s 276 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:288:16 124s | 124s 288 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:311:16 124s | 124s 311 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:323:16 124s | 124s 323 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:85:15 124s | 124s 85 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:342:16 124s | 124s 342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:656:16 124s | 124s 656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:667:16 124s | 124s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:680:16 124s | 124s 680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:703:16 124s | 124s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:716:16 124s | 124s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:777:16 124s | 124s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:786:16 124s | 124s 786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:795:16 124s | 124s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:828:16 124s | 124s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:837:16 124s | 124s 837 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:887:16 124s | 124s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:895:16 124s | 124s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:949:16 124s | 124s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:992:16 124s | 124s 992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1003:16 124s | 124s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1024:16 124s | 124s 1024 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1098:16 124s | 124s 1098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1108:16 124s | 124s 1108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:357:20 124s | 124s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:869:20 124s | 124s 869 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:904:20 124s | 124s 904 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:958:20 124s | 124s 958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1128:16 124s | 124s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1137:16 124s | 124s 1137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1148:16 124s | 124s 1148 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1162:16 124s | 124s 1162 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1172:16 124s | 124s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1193:16 124s | 124s 1193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1200:16 124s | 124s 1200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1209:16 124s | 124s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1216:16 124s | 124s 1216 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1224:16 124s | 124s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1232:16 124s | 124s 1232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1241:16 124s | 124s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1250:16 124s | 124s 1250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1257:16 124s | 124s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1264:16 124s | 124s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1277:16 124s | 124s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1289:16 124s | 124s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/ty.rs:1297:16 124s | 124s 1297 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:16:16 124s | 124s 16 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:17:20 124s | 124s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/macros.rs:155:20 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s ::: /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:5:1 124s | 124s 5 | / ast_enum_of_structs! { 124s 6 | | /// A pattern in a local binding, function signature, match expression, or 124s 7 | | /// various other places. 124s 8 | | /// 124s ... | 124s 97 | | } 124s 98 | | } 124s | |_- in this macro invocation 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:104:16 124s | 124s 104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:119:16 124s | 124s 119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:136:16 124s | 124s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:147:16 124s | 124s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:158:16 124s | 124s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:176:16 124s | 124s 176 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:188:16 124s | 124s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:201:16 124s | 124s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:214:16 124s | 124s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:225:16 124s | 124s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:237:16 124s | 124s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:251:16 124s | 124s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:263:16 124s | 124s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:275:16 124s | 124s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:288:16 124s | 124s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:302:16 124s | 124s 302 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:94:15 124s | 124s 94 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:318:16 124s | 124s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:769:16 124s | 124s 769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:777:16 124s | 124s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:791:16 124s | 124s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:807:16 124s | 124s 807 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:816:16 124s | 124s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:826:16 124s | 124s 826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:834:16 124s | 124s 834 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:844:16 124s | 124s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:853:16 124s | 124s 853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:863:16 124s | 124s 863 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:871:16 124s | 124s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:879:16 124s | 124s 879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:889:16 124s | 124s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:899:16 124s | 124s 899 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:907:16 124s | 124s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/pat.rs:916:16 124s | 124s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:9:16 124s | 124s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:35:16 124s | 124s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:67:16 124s | 124s 67 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:105:16 124s | 124s 105 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:130:16 124s | 124s 130 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:144:16 124s | 124s 144 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:157:16 124s | 124s 157 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:171:16 124s | 124s 171 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:201:16 124s | 124s 201 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:218:16 124s | 124s 218 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:225:16 124s | 124s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:358:16 124s | 124s 358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:385:16 124s | 124s 385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:397:16 124s | 124s 397 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:430:16 124s | 124s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:442:16 124s | 124s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:505:20 124s | 124s 505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:569:20 124s | 124s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:591:20 124s | 124s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:693:16 124s | 124s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:701:16 124s | 124s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:709:16 124s | 124s 709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:724:16 124s | 124s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:752:16 124s | 124s 752 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:793:16 124s | 124s 793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:802:16 124s | 124s 802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/path.rs:811:16 124s | 124s 811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:371:12 124s | 124s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:386:12 124s | 124s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:395:12 124s | 124s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:408:12 124s | 124s 408 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:422:12 124s | 124s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:1012:12 124s | 124s 1012 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:54:15 124s | 124s 54 | #[cfg(not(syn_no_const_vec_new))] 124s | ^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:63:11 124s | 124s 63 | #[cfg(syn_no_const_vec_new)] 124s | ^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:267:16 124s | 124s 267 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:288:16 124s | 124s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:325:16 124s | 124s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:346:16 124s | 124s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:1060:16 124s | 124s 1060 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/punctuated.rs:1071:16 124s | 124s 1071 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse_quote.rs:68:12 124s | 124s 68 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse_quote.rs:100:12 124s | 124s 100 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse_macro_input.rs:107:12 124s | 124s 107 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/lib.rs:579:16 124s | 124s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "visit")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:1216:15 124s | 124s 1216 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:1905:15 124s | 124s 1905 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:2071:15 124s | 124s 2071 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:2207:15 124s | 124s 2207 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:2807:15 124s | 124s 2807 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:3263:15 124s | 124s 3263 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/visit.rs:3392:15 124s | 124s 3392 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:7:12 124s | 124s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:17:12 124s | 124s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:29:12 124s | 124s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:43:12 124s | 124s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:46:12 124s | 124s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:53:12 124s | 124s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:66:12 124s | 124s 66 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:77:12 124s | 124s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:80:12 124s | 124s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:87:12 124s | 124s 87 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:98:12 124s | 124s 98 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:108:12 124s | 124s 108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:120:12 124s | 124s 120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:135:12 124s | 124s 135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:146:12 124s | 124s 146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:157:12 124s | 124s 157 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:168:12 124s | 124s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:179:12 124s | 124s 179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:189:12 124s | 124s 189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:202:12 124s | 124s 202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:282:12 124s | 124s 282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:293:12 124s | 124s 293 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:305:12 124s | 124s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:317:12 124s | 124s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:329:12 124s | 124s 329 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:341:12 124s | 124s 341 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:353:12 124s | 124s 353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:364:12 124s | 124s 364 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:375:12 124s | 124s 375 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:387:12 124s | 124s 387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:399:12 124s | 124s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:411:12 124s | 124s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:428:12 124s | 124s 428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:439:12 124s | 124s 439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:451:12 124s | 124s 451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:466:12 124s | 124s 466 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:477:12 124s | 124s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:490:12 124s | 124s 490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:502:12 124s | 124s 502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:515:12 124s | 124s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:525:12 124s | 124s 525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:537:12 124s | 124s 537 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:547:12 124s | 124s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:560:12 124s | 124s 560 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:575:12 124s | 124s 575 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:586:12 124s | 124s 586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:597:12 124s | 124s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:609:12 124s | 124s 609 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:622:12 124s | 124s 622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:635:12 124s | 124s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:646:12 124s | 124s 646 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:660:12 124s | 124s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:671:12 124s | 124s 671 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:682:12 124s | 124s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:693:12 124s | 124s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:705:12 124s | 124s 705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:716:12 124s | 124s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:727:12 124s | 124s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:740:12 124s | 124s 740 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:751:12 124s | 124s 751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:764:12 124s | 124s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:776:12 124s | 124s 776 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:788:12 124s | 124s 788 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:799:12 124s | 124s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:809:12 124s | 124s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:819:12 124s | 124s 819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:830:12 124s | 124s 830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:840:12 124s | 124s 840 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:855:12 124s | 124s 855 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:867:12 124s | 124s 867 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:878:12 124s | 124s 878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:894:12 124s | 124s 894 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:907:12 124s | 124s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:920:12 124s | 124s 920 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:930:12 124s | 124s 930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:941:12 124s | 124s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:953:12 124s | 124s 953 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:968:12 124s | 124s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:986:12 124s | 124s 986 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:997:12 124s | 124s 997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1010:12 124s | 124s 1010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1027:12 124s | 124s 1027 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1037:12 124s | 124s 1037 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1064:12 124s | 124s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1081:12 124s | 124s 1081 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1096:12 124s | 124s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1111:12 124s | 124s 1111 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1123:12 124s | 124s 1123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1135:12 124s | 124s 1135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1152:12 124s | 124s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1164:12 124s | 124s 1164 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1177:12 124s | 124s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1191:12 124s | 124s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1209:12 124s | 124s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1224:12 124s | 124s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1243:12 124s | 124s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1259:12 124s | 124s 1259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1275:12 124s | 124s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1289:12 124s | 124s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1303:12 124s | 124s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1313:12 124s | 124s 1313 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1324:12 124s | 124s 1324 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1339:12 124s | 124s 1339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1349:12 124s | 124s 1349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1362:12 124s | 124s 1362 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1374:12 124s | 124s 1374 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1385:12 124s | 124s 1385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1395:12 124s | 124s 1395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1406:12 124s | 124s 1406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1417:12 124s | 124s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1428:12 124s | 124s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1440:12 124s | 124s 1440 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1450:12 124s | 124s 1450 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1461:12 124s | 124s 1461 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1487:12 124s | 124s 1487 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1498:12 124s | 124s 1498 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1511:12 124s | 124s 1511 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1521:12 124s | 124s 1521 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1531:12 124s | 124s 1531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1542:12 124s | 124s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1553:12 124s | 124s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1565:12 124s | 124s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1577:12 124s | 124s 1577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1587:12 124s | 124s 1587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1598:12 124s | 124s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1611:12 124s | 124s 1611 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1622:12 124s | 124s 1622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1633:12 124s | 124s 1633 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1645:12 124s | 124s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1655:12 124s | 124s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1665:12 124s | 124s 1665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1678:12 124s | 124s 1678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1688:12 124s | 124s 1688 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1699:12 124s | 124s 1699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1710:12 124s | 124s 1710 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1722:12 124s | 124s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1735:12 124s | 124s 1735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1738:12 124s | 124s 1738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1745:12 124s | 124s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1757:12 124s | 124s 1757 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1767:12 124s | 124s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1786:12 124s | 124s 1786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1798:12 124s | 124s 1798 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1810:12 124s | 124s 1810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1813:12 124s | 124s 1813 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1820:12 124s | 124s 1820 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1835:12 124s | 124s 1835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1850:12 124s | 124s 1850 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1861:12 124s | 124s 1861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1873:12 124s | 124s 1873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1889:12 124s | 124s 1889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1914:12 124s | 124s 1914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1926:12 124s | 124s 1926 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1942:12 124s | 124s 1942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1952:12 124s | 124s 1952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1962:12 124s | 124s 1962 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1971:12 124s | 124s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1978:12 124s | 124s 1978 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1987:12 124s | 124s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2001:12 124s | 124s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2011:12 124s | 124s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2021:12 124s | 124s 2021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2031:12 124s | 124s 2031 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2043:12 124s | 124s 2043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2055:12 124s | 124s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2065:12 124s | 124s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2075:12 124s | 124s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2085:12 124s | 124s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2088:12 124s | 124s 2088 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2095:12 124s | 124s 2095 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2104:12 124s | 124s 2104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2114:12 124s | 124s 2114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2123:12 124s | 124s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2134:12 124s | 124s 2134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2145:12 124s | 124s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2158:12 124s | 124s 2158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2168:12 124s | 124s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2180:12 124s | 124s 2180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2189:12 124s | 124s 2189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2198:12 124s | 124s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2210:12 124s | 124s 2210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2222:12 124s | 124s 2222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:2232:12 124s | 124s 2232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:276:23 124s | 124s 276 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:849:19 124s | 124s 849 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:962:19 124s | 124s 962 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1058:19 124s | 124s 1058 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1481:19 124s | 124s 1481 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1829:19 124s | 124s 1829 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/clone.rs:1908:19 124s | 124s 1908 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:8:12 124s | 124s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:11:12 124s | 124s 11 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:18:12 124s | 124s 18 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:21:12 124s | 124s 21 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:28:12 124s | 124s 28 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:31:12 124s | 124s 31 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:39:12 124s | 124s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:42:12 124s | 124s 42 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:53:12 124s | 124s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:56:12 124s | 124s 56 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:64:12 124s | 124s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:67:12 124s | 124s 67 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:74:12 124s | 124s 74 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:77:12 124s | 124s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:114:12 124s | 124s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:117:12 124s | 124s 117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:124:12 124s | 124s 124 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:127:12 124s | 124s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:134:12 124s | 124s 134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:137:12 124s | 124s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:144:12 124s | 124s 144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:147:12 124s | 124s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:155:12 124s | 124s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:158:12 124s | 124s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:165:12 124s | 124s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:168:12 124s | 124s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:180:12 124s | 124s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:183:12 124s | 124s 183 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:190:12 124s | 124s 190 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:193:12 124s | 124s 193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:200:12 124s | 124s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:203:12 124s | 124s 203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:210:12 124s | 124s 210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:213:12 124s | 124s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:221:12 124s | 124s 221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:224:12 124s | 124s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:305:12 124s | 124s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:308:12 124s | 124s 308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:315:12 124s | 124s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:318:12 124s | 124s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:325:12 124s | 124s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:328:12 124s | 124s 328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:336:12 124s | 124s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:339:12 124s | 124s 339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:347:12 124s | 124s 347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:350:12 124s | 124s 350 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:357:12 124s | 124s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:360:12 124s | 124s 360 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:368:12 124s | 124s 368 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:371:12 124s | 124s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:379:12 124s | 124s 379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:382:12 124s | 124s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:389:12 124s | 124s 389 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:392:12 124s | 124s 392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:399:12 124s | 124s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:402:12 124s | 124s 402 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:409:12 124s | 124s 409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:412:12 124s | 124s 412 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:419:12 124s | 124s 419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:422:12 124s | 124s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:432:12 124s | 124s 432 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:435:12 124s | 124s 435 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:442:12 124s | 124s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:445:12 124s | 124s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:453:12 124s | 124s 453 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:456:12 124s | 124s 456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:464:12 124s | 124s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:467:12 124s | 124s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:474:12 124s | 124s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:477:12 124s | 124s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:486:12 124s | 124s 486 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:489:12 124s | 124s 489 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:496:12 124s | 124s 496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:499:12 124s | 124s 499 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:506:12 124s | 124s 506 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:509:12 124s | 124s 509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:516:12 124s | 124s 516 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:519:12 124s | 124s 519 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:526:12 124s | 124s 526 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:529:12 124s | 124s 529 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:536:12 124s | 124s 536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:539:12 124s | 124s 539 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:546:12 124s | 124s 546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:549:12 124s | 124s 549 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:558:12 124s | 124s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:561:12 124s | 124s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:568:12 124s | 124s 568 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:571:12 124s | 124s 571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:578:12 124s | 124s 578 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:581:12 124s | 124s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:589:12 124s | 124s 589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:592:12 124s | 124s 592 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:600:12 124s | 124s 600 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:603:12 124s | 124s 603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:610:12 124s | 124s 610 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:613:12 124s | 124s 613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:620:12 124s | 124s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:623:12 124s | 124s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:632:12 124s | 124s 632 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:635:12 124s | 124s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:642:12 124s | 124s 642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:645:12 124s | 124s 645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:652:12 124s | 124s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:655:12 124s | 124s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:662:12 124s | 124s 662 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:665:12 124s | 124s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:672:12 124s | 124s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:675:12 124s | 124s 675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:682:12 124s | 124s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:685:12 124s | 124s 685 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:692:12 124s | 124s 692 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:695:12 124s | 124s 695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:703:12 124s | 124s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:706:12 124s | 124s 706 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:713:12 124s | 124s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:716:12 124s | 124s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:724:12 124s | 124s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:727:12 124s | 124s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:735:12 124s | 124s 735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:738:12 124s | 124s 738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:746:12 124s | 124s 746 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:749:12 124s | 124s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:761:12 124s | 124s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:764:12 124s | 124s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:771:12 124s | 124s 771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:774:12 124s | 124s 774 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:781:12 124s | 124s 781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:784:12 124s | 124s 784 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:792:12 124s | 124s 792 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:795:12 124s | 124s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:806:12 124s | 124s 806 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:809:12 124s | 124s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:825:12 124s | 124s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:828:12 124s | 124s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:835:12 124s | 124s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:838:12 124s | 124s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:846:12 124s | 124s 846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:849:12 124s | 124s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:858:12 124s | 124s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:861:12 124s | 124s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:868:12 124s | 124s 868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:871:12 124s | 124s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:895:12 124s | 124s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:898:12 124s | 124s 898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:914:12 124s | 124s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:917:12 124s | 124s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:931:12 124s | 124s 931 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:934:12 124s | 124s 934 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:942:12 124s | 124s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:945:12 124s | 124s 945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:961:12 124s | 124s 961 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:964:12 124s | 124s 964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:973:12 124s | 124s 973 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:976:12 124s | 124s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:984:12 124s | 124s 984 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:987:12 124s | 124s 987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:996:12 124s | 124s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:999:12 124s | 124s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1008:12 124s | 124s 1008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1011:12 124s | 124s 1011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1039:12 124s | 124s 1039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1042:12 124s | 124s 1042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1050:12 124s | 124s 1050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1053:12 124s | 124s 1053 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1061:12 124s | 124s 1061 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1064:12 124s | 124s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1072:12 124s | 124s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1075:12 124s | 124s 1075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1083:12 124s | 124s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1086:12 124s | 124s 1086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1093:12 124s | 124s 1093 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1096:12 124s | 124s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1106:12 124s | 124s 1106 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1109:12 124s | 124s 1109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1117:12 124s | 124s 1117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1120:12 124s | 124s 1120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1128:12 124s | 124s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1131:12 124s | 124s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1139:12 124s | 124s 1139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1142:12 124s | 124s 1142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1151:12 124s | 124s 1151 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1154:12 124s | 124s 1154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1163:12 124s | 124s 1163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1166:12 124s | 124s 1166 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1177:12 124s | 124s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1180:12 124s | 124s 1180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1188:12 124s | 124s 1188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1191:12 124s | 124s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1199:12 124s | 124s 1199 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1202:12 124s | 124s 1202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1210:12 124s | 124s 1210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1213:12 124s | 124s 1213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1221:12 124s | 124s 1221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1224:12 124s | 124s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1231:12 124s | 124s 1231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1234:12 124s | 124s 1234 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1241:12 124s | 124s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1243:12 124s | 124s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1261:12 124s | 124s 1261 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1263:12 124s | 124s 1263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1269:12 124s | 124s 1269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1271:12 124s | 124s 1271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1273:12 124s | 124s 1273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1275:12 124s | 124s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1277:12 124s | 124s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1279:12 124s | 124s 1279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1282:12 124s | 124s 1282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1285:12 124s | 124s 1285 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1292:12 124s | 124s 1292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1295:12 124s | 124s 1295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1303:12 124s | 124s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1306:12 124s | 124s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1318:12 124s | 124s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1321:12 124s | 124s 1321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1333:12 124s | 124s 1333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1336:12 124s | 124s 1336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1343:12 124s | 124s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1346:12 124s | 124s 1346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1353:12 124s | 124s 1353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1356:12 124s | 124s 1356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1363:12 124s | 124s 1363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1366:12 124s | 124s 1366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1377:12 124s | 124s 1377 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1380:12 124s | 124s 1380 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1387:12 124s | 124s 1387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1390:12 124s | 124s 1390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1417:12 124s | 124s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1420:12 124s | 124s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1427:12 124s | 124s 1427 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1430:12 124s | 124s 1430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1439:12 124s | 124s 1439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1442:12 124s | 124s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1449:12 124s | 124s 1449 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1452:12 124s | 124s 1452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1459:12 124s | 124s 1459 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1462:12 124s | 124s 1462 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1470:12 124s | 124s 1470 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1473:12 124s | 124s 1473 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1480:12 124s | 124s 1480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1483:12 124s | 124s 1483 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1491:12 124s | 124s 1491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1494:12 124s | 124s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1502:12 124s | 124s 1502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1505:12 124s | 124s 1505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1512:12 124s | 124s 1512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1515:12 124s | 124s 1515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1522:12 124s | 124s 1522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1525:12 124s | 124s 1525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1533:12 124s | 124s 1533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1536:12 124s | 124s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1543:12 124s | 124s 1543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1546:12 124s | 124s 1546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1553:12 124s | 124s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1556:12 124s | 124s 1556 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1563:12 124s | 124s 1563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1566:12 124s | 124s 1566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1573:12 124s | 124s 1573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1576:12 124s | 124s 1576 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1583:12 124s | 124s 1583 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1586:12 124s | 124s 1586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1604:12 124s | 124s 1604 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1607:12 124s | 124s 1607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1614:12 124s | 124s 1614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1617:12 124s | 124s 1617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1624:12 124s | 124s 1624 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1627:12 124s | 124s 1627 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1634:12 124s | 124s 1634 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1637:12 124s | 124s 1637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1645:12 124s | 124s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1648:12 124s | 124s 1648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1656:12 124s | 124s 1656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1659:12 124s | 124s 1659 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1670:12 124s | 124s 1670 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1673:12 124s | 124s 1673 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1681:12 124s | 124s 1681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1684:12 124s | 124s 1684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1695:12 124s | 124s 1695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1698:12 124s | 124s 1698 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1709:12 124s | 124s 1709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1712:12 124s | 124s 1712 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1725:12 124s | 124s 1725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1728:12 124s | 124s 1728 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1736:12 124s | 124s 1736 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1739:12 124s | 124s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1750:12 124s | 124s 1750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1753:12 124s | 124s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1769:12 124s | 124s 1769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1772:12 124s | 124s 1772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1780:12 124s | 124s 1780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1783:12 124s | 124s 1783 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1791:12 124s | 124s 1791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1794:12 124s | 124s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1802:12 124s | 124s 1802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1805:12 124s | 124s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1814:12 124s | 124s 1814 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1817:12 124s | 124s 1817 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1843:12 124s | 124s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1846:12 124s | 124s 1846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1853:12 124s | 124s 1853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1856:12 124s | 124s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1865:12 124s | 124s 1865 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1868:12 124s | 124s 1868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1875:12 124s | 124s 1875 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1878:12 124s | 124s 1878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1885:12 124s | 124s 1885 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1888:12 124s | 124s 1888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1895:12 124s | 124s 1895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1898:12 124s | 124s 1898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1905:12 124s | 124s 1905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1908:12 124s | 124s 1908 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1915:12 124s | 124s 1915 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1918:12 124s | 124s 1918 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1927:12 124s | 124s 1927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1930:12 124s | 124s 1930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1945:12 124s | 124s 1945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1948:12 124s | 124s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1955:12 124s | 124s 1955 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1958:12 124s | 124s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1965:12 124s | 124s 1965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1968:12 124s | 124s 1968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1976:12 124s | 124s 1976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1979:12 124s | 124s 1979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1987:12 124s | 124s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1990:12 124s | 124s 1990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:1997:12 124s | 124s 1997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2000:12 124s | 124s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2007:12 124s | 124s 2007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2010:12 124s | 124s 2010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2017:12 124s | 124s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2020:12 124s | 124s 2020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2032:12 124s | 124s 2032 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2035:12 124s | 124s 2035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2042:12 124s | 124s 2042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2045:12 124s | 124s 2045 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2052:12 124s | 124s 2052 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2055:12 124s | 124s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2062:12 124s | 124s 2062 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2065:12 124s | 124s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2072:12 124s | 124s 2072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2075:12 124s | 124s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2082:12 124s | 124s 2082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2085:12 124s | 124s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2099:12 124s | 124s 2099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2102:12 124s | 124s 2102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2109:12 124s | 124s 2109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2112:12 124s | 124s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2120:12 124s | 124s 2120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2123:12 124s | 124s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2130:12 124s | 124s 2130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2133:12 124s | 124s 2133 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2140:12 124s | 124s 2140 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2143:12 124s | 124s 2143 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2150:12 124s | 124s 2150 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2153:12 124s | 124s 2153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2168:12 124s | 124s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2171:12 124s | 124s 2171 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2178:12 124s | 124s 2178 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/eq.rs:2181:12 124s | 124s 2181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:9:12 124s | 124s 9 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:19:12 124s | 124s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:30:12 124s | 124s 30 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:44:12 124s | 124s 44 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:61:12 124s | 124s 61 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:73:12 124s | 124s 73 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:85:12 124s | 124s 85 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:180:12 124s | 124s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:191:12 124s | 124s 191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:201:12 124s | 124s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:211:12 124s | 124s 211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:225:12 124s | 124s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:236:12 124s | 124s 236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:259:12 124s | 124s 259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:269:12 124s | 124s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:280:12 124s | 124s 280 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:290:12 124s | 124s 290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:304:12 124s | 124s 304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:507:12 124s | 124s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:518:12 124s | 124s 518 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:530:12 124s | 124s 530 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:543:12 124s | 124s 543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:555:12 124s | 124s 555 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:566:12 124s | 124s 566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:579:12 124s | 124s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:591:12 124s | 124s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:602:12 124s | 124s 602 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:614:12 124s | 124s 614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:626:12 124s | 124s 626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:638:12 124s | 124s 638 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:654:12 124s | 124s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:665:12 124s | 124s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:677:12 124s | 124s 677 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:691:12 124s | 124s 691 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:702:12 124s | 124s 702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:715:12 124s | 124s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:727:12 124s | 124s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:739:12 124s | 124s 739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:750:12 124s | 124s 750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:762:12 124s | 124s 762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:773:12 124s | 124s 773 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:785:12 124s | 124s 785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:799:12 124s | 124s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:810:12 124s | 124s 810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:822:12 124s | 124s 822 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:835:12 124s | 124s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:847:12 124s | 124s 847 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:859:12 124s | 124s 859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:870:12 124s | 124s 870 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:884:12 124s | 124s 884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:895:12 124s | 124s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:906:12 124s | 124s 906 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:917:12 124s | 124s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:929:12 124s | 124s 929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:941:12 124s | 124s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:952:12 124s | 124s 952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:965:12 124s | 124s 965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:976:12 124s | 124s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:990:12 124s | 124s 990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1003:12 124s | 124s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1016:12 124s | 124s 1016 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1038:12 124s | 124s 1038 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1048:12 124s | 124s 1048 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1058:12 124s | 124s 1058 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1070:12 124s | 124s 1070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1089:12 124s | 124s 1089 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1122:12 124s | 124s 1122 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1134:12 124s | 124s 1134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1146:12 124s | 124s 1146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1160:12 124s | 124s 1160 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1172:12 124s | 124s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1203:12 124s | 124s 1203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1222:12 124s | 124s 1222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1245:12 124s | 124s 1245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1258:12 124s | 124s 1258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1291:12 124s | 124s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1306:12 124s | 124s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1318:12 124s | 124s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1332:12 124s | 124s 1332 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1347:12 124s | 124s 1347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1428:12 124s | 124s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1442:12 124s | 124s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1456:12 124s | 124s 1456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1469:12 124s | 124s 1469 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1482:12 124s | 124s 1482 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1494:12 124s | 124s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1510:12 124s | 124s 1510 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1523:12 124s | 124s 1523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1536:12 124s | 124s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1550:12 124s | 124s 1550 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1565:12 124s | 124s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1580:12 124s | 124s 1580 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1598:12 124s | 124s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1612:12 124s | 124s 1612 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1626:12 124s | 124s 1626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1640:12 124s | 124s 1640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1653:12 124s | 124s 1653 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1663:12 124s | 124s 1663 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1675:12 124s | 124s 1675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1717:12 124s | 124s 1717 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1727:12 124s | 124s 1727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1739:12 124s | 124s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1751:12 124s | 124s 1751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1771:12 124s | 124s 1771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1794:12 124s | 124s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1805:12 124s | 124s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1816:12 124s | 124s 1816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1826:12 124s | 124s 1826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1845:12 124s | 124s 1845 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1856:12 124s | 124s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1933:12 124s | 124s 1933 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1944:12 124s | 124s 1944 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1958:12 124s | 124s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1969:12 124s | 124s 1969 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1980:12 124s | 124s 1980 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1992:12 124s | 124s 1992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2004:12 124s | 124s 2004 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2017:12 124s | 124s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2029:12 124s | 124s 2029 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2039:12 124s | 124s 2039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2050:12 124s | 124s 2050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2063:12 124s | 124s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2074:12 124s | 124s 2074 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2086:12 124s | 124s 2086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2098:12 124s | 124s 2098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2108:12 124s | 124s 2108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2119:12 124s | 124s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2141:12 124s | 124s 2141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2152:12 124s | 124s 2152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2163:12 124s | 124s 2163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2174:12 124s | 124s 2174 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2186:12 124s | 124s 2186 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2198:12 124s | 124s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2215:12 124s | 124s 2215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2227:12 124s | 124s 2227 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2245:12 124s | 124s 2245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2263:12 124s | 124s 2263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2290:12 124s | 124s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2303:12 124s | 124s 2303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2320:12 124s | 124s 2320 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2353:12 124s | 124s 2353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2366:12 124s | 124s 2366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2378:12 124s | 124s 2378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2391:12 124s | 124s 2391 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2406:12 124s | 124s 2406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2479:12 124s | 124s 2479 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2490:12 124s | 124s 2490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2505:12 124s | 124s 2505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2515:12 124s | 124s 2515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2525:12 124s | 124s 2525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2533:12 124s | 124s 2533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2543:12 124s | 124s 2543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2551:12 124s | 124s 2551 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2566:12 124s | 124s 2566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2585:12 124s | 124s 2585 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2595:12 124s | 124s 2595 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2606:12 124s | 124s 2606 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2618:12 124s | 124s 2618 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2630:12 124s | 124s 2630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2640:12 124s | 124s 2640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2651:12 124s | 124s 2651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2661:12 124s | 124s 2661 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2681:12 124s | 124s 2681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2689:12 124s | 124s 2689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2699:12 124s | 124s 2699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2709:12 124s | 124s 2709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2720:12 124s | 124s 2720 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2731:12 124s | 124s 2731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2762:12 124s | 124s 2762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2772:12 124s | 124s 2772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2785:12 124s | 124s 2785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2793:12 124s | 124s 2793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2801:12 124s | 124s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2812:12 124s | 124s 2812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2838:12 124s | 124s 2838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2848:12 124s | 124s 2848 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:501:23 124s | 124s 501 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1116:19 124s | 124s 1116 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1285:19 124s | 124s 1285 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1422:19 124s | 124s 1422 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:1927:19 124s | 124s 1927 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2347:19 124s | 124s 2347 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/hash.rs:2473:19 124s | 124s 2473 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:7:12 124s | 124s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:17:12 124s | 124s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:29:12 124s | 124s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:43:12 124s | 124s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:57:12 124s | 124s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:70:12 124s | 124s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:81:12 124s | 124s 81 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:229:12 124s | 124s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:240:12 124s | 124s 240 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:250:12 124s | 124s 250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:262:12 124s | 124s 262 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:277:12 124s | 124s 277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:288:12 124s | 124s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:311:12 124s | 124s 311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:322:12 124s | 124s 322 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:333:12 124s | 124s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:343:12 124s | 124s 343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:356:12 124s | 124s 356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:596:12 124s | 124s 596 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:607:12 124s | 124s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:619:12 124s | 124s 619 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:631:12 124s | 124s 631 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:643:12 124s | 124s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:655:12 124s | 124s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:667:12 124s | 124s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:678:12 124s | 124s 678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:689:12 124s | 124s 689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:701:12 124s | 124s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:713:12 124s | 124s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:725:12 124s | 124s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:742:12 124s | 124s 742 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:753:12 124s | 124s 753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:765:12 124s | 124s 765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:780:12 124s | 124s 780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:791:12 124s | 124s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:804:12 124s | 124s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:816:12 124s | 124s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:829:12 124s | 124s 829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:839:12 124s | 124s 839 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:851:12 124s | 124s 851 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:861:12 124s | 124s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:874:12 124s | 124s 874 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:889:12 124s | 124s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:900:12 124s | 124s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:911:12 124s | 124s 911 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:923:12 124s | 124s 923 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:936:12 124s | 124s 936 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:949:12 124s | 124s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:960:12 124s | 124s 960 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:974:12 124s | 124s 974 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:985:12 124s | 124s 985 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:996:12 124s | 124s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1007:12 124s | 124s 1007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1019:12 124s | 124s 1019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1030:12 124s | 124s 1030 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1041:12 124s | 124s 1041 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1054:12 124s | 124s 1054 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1065:12 124s | 124s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1078:12 124s | 124s 1078 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1090:12 124s | 124s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1102:12 124s | 124s 1102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1121:12 124s | 124s 1121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1131:12 124s | 124s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1141:12 124s | 124s 1141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1152:12 124s | 124s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1170:12 124s | 124s 1170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1205:12 124s | 124s 1205 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1217:12 124s | 124s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1228:12 124s | 124s 1228 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1244:12 124s | 124s 1244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1257:12 124s | 124s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1290:12 124s | 124s 1290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1308:12 124s | 124s 1308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1331:12 124s | 124s 1331 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1343:12 124s | 124s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1378:12 124s | 124s 1378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1396:12 124s | 124s 1396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1407:12 124s | 124s 1407 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1420:12 124s | 124s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1437:12 124s | 124s 1437 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1447:12 124s | 124s 1447 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1542:12 124s | 124s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1559:12 124s | 124s 1559 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1574:12 124s | 124s 1574 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1589:12 124s | 124s 1589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1601:12 124s | 124s 1601 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1613:12 124s | 124s 1613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1630:12 124s | 124s 1630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1642:12 124s | 124s 1642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1655:12 124s | 124s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1669:12 124s | 124s 1669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1687:12 124s | 124s 1687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1702:12 124s | 124s 1702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1721:12 124s | 124s 1721 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1737:12 124s | 124s 1737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1753:12 124s | 124s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1767:12 124s | 124s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1781:12 124s | 124s 1781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1790:12 124s | 124s 1790 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1800:12 124s | 124s 1800 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1811:12 124s | 124s 1811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1859:12 124s | 124s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1872:12 124s | 124s 1872 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1884:12 124s | 124s 1884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1907:12 124s | 124s 1907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1925:12 124s | 124s 1925 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1948:12 124s | 124s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1959:12 124s | 124s 1959 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1970:12 124s | 124s 1970 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1982:12 124s | 124s 1982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2000:12 124s | 124s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2011:12 124s | 124s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2101:12 124s | 124s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2112:12 124s | 124s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2125:12 124s | 124s 2125 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2135:12 124s | 124s 2135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2145:12 124s | 124s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2156:12 124s | 124s 2156 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2167:12 124s | 124s 2167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2179:12 124s | 124s 2179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2191:12 124s | 124s 2191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2201:12 124s | 124s 2201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2212:12 124s | 124s 2212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2225:12 124s | 124s 2225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2236:12 124s | 124s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2247:12 124s | 124s 2247 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2259:12 124s | 124s 2259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2269:12 124s | 124s 2269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2279:12 124s | 124s 2279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2298:12 124s | 124s 2298 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2308:12 124s | 124s 2308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2319:12 124s | 124s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2330:12 124s | 124s 2330 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2342:12 124s | 124s 2342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2355:12 124s | 124s 2355 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2373:12 124s | 124s 2373 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2385:12 124s | 124s 2385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2400:12 124s | 124s 2400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2419:12 124s | 124s 2419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2448:12 124s | 124s 2448 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2460:12 124s | 124s 2460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2474:12 124s | 124s 2474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2509:12 124s | 124s 2509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2524:12 124s | 124s 2524 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2535:12 124s | 124s 2535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2547:12 124s | 124s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2563:12 124s | 124s 2563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2648:12 124s | 124s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2660:12 124s | 124s 2660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2676:12 124s | 124s 2676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2686:12 124s | 124s 2686 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2696:12 124s | 124s 2696 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2705:12 124s | 124s 2705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2714:12 124s | 124s 2714 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2723:12 124s | 124s 2723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2737:12 124s | 124s 2737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2755:12 124s | 124s 2755 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2765:12 124s | 124s 2765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2775:12 124s | 124s 2775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2787:12 124s | 124s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2799:12 124s | 124s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2809:12 124s | 124s 2809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2819:12 124s | 124s 2819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2829:12 124s | 124s 2829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2852:12 124s | 124s 2852 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2861:12 124s | 124s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2871:12 124s | 124s 2871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2880:12 124s | 124s 2880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2891:12 124s | 124s 2891 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2902:12 124s | 124s 2902 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2935:12 124s | 124s 2935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2945:12 124s | 124s 2945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2957:12 124s | 124s 2957 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2966:12 124s | 124s 2966 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2975:12 124s | 124s 2975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2987:12 124s | 124s 2987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:3011:12 124s | 124s 3011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:3021:12 124s | 124s 3021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:590:23 124s | 124s 590 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1199:19 124s | 124s 1199 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1372:19 124s | 124s 1372 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:1536:19 124s | 124s 1536 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2095:19 124s | 124s 2095 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2503:19 124s | 124s 2503 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/gen/debug.rs:2642:19 124s | 124s 2642 | #[cfg(syn_no_non_exhaustive)] 124s | ^^^^^^^^^^^^^^^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1065:12 124s | 124s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1072:12 124s | 124s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1083:12 124s | 124s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1090:12 124s | 124s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1100:12 124s | 124s 1100 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1116:12 124s | 124s 1116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1126:12 124s | 124s 1126 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1291:12 124s | 124s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1299:12 124s | 124s 1299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1303:12 124s | 124s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/parse.rs:1311:12 124s | 124s 1311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/reserved.rs:29:12 124s | 124s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: unexpected `cfg` condition name: `doc_cfg` 124s --> /tmp/tmp.B7qMTxtiJf/registry/syn-1.0.109/src/reserved.rs:39:12 124s | 124s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 124s | ^^^^^^^ 124s | 124s = help: consider using a Cargo feature instead 124s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 124s [lints.rust] 124s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 124s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 124s = note: see for more information about checking conditional configuration 124s 124s warning: `memchr` (lib) generated 1 warning (1 duplicate) 124s Compiling minimal-lexical v0.2.1 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=061c55d7bafd6059 -C extra-filename=-061c55d7bafd6059 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 124s warning: `minimal-lexical` (lib) generated 1 warning (1 duplicate) 124s Compiling fixedbitset v0.4.2 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/fixedbitset-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=4f27d8f507162a0c -C extra-filename=-4f27d8f507162a0c --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 124s warning: `fixedbitset` (lib) generated 1 warning (1 duplicate) 124s Compiling thiserror v1.0.69 124s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --cap-lints warn` 125s Compiling bit-vec v0.8.0 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/bit-vec-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/bit-vec-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/bit-vec-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=f5a472a8e3d383f4 -C extra-filename=-f5a472a8e3d383f4 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: unexpected `cfg` condition value: `borsh` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:102:7 125s | 125s 102 | #[cfg(feature = "borsh")] 125s | ^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `borsh` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s = note: `#[warn(unexpected_cfgs)]` on by default 125s 125s warning: unexpected `cfg` condition value: `miniserde` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:104:7 125s | 125s 104 | #[cfg(feature = "miniserde")] 125s | ^^^^^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `miniserde` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: unexpected `cfg` condition value: `nanoserde` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:106:7 125s | 125s 106 | #[cfg(feature = "nanoserde")] 125s | ^^^^^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: unexpected `cfg` condition value: `nanoserde` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:108:7 125s | 125s 108 | #[cfg(feature = "nanoserde")] 125s | ^^^^^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: unexpected `cfg` condition value: `borsh` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:238:5 125s | 125s 238 | feature = "borsh", 125s | ^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `borsh` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: unexpected `cfg` condition value: `miniserde` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:242:5 125s | 125s 242 | feature = "miniserde", 125s | ^^^^^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `miniserde` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: unexpected `cfg` condition value: `nanoserde` 125s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:246:5 125s | 125s 246 | feature = "nanoserde", 125s | ^^^^^^^^^^^^^^^^^^^^^ 125s | 125s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 125s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 125s = note: see for more information about checking conditional configuration 125s 125s warning: `bit-vec` (lib) generated 8 warnings (1 duplicate) 125s Compiling quick-error v2.0.1 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets :Colin Kiegel ' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write. 125s ' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/quick-error' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-error CARGO_PKG_README='' CARGO_PKG_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name quick_error --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/quick-error-2.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=78f4ccd4ae208433 -C extra-filename=-78f4ccd4ae208433 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `quick-error` (lib) generated 1 warning (1 duplicate) 125s Compiling rusty-fork v0.3.0 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rusty_fork CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rusty-fork-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rusty-fork-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Cross-platform library for running Rust tests in sub-processes using a 125s fork-like interface. 125s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty-fork CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/altsysrq/rusty-fork' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name rusty_fork --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/rusty-fork-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="timeout"' --cfg 'feature="wait-timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "timeout", "wait-timeout"))' -C metadata=50649851fa84c472 -C extra-filename=-50649851fa84c472 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern fnv=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern quick_error=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libquick_error-78f4ccd4ae208433.rmeta --extern tempfile=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern wait_timeout=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwait_timeout-c8041ffbea216b96.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `rusty-fork` (lib) generated 1 warning (1 duplicate) 125s Compiling bit-set v0.8.0 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/bit-set-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/bit-set-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/bit-set-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=89b3c1c57b5a03ce -C extra-filename=-89b3c1c57b5a03ce --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bit_vec=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 125s warning: `bit-set` (lib) generated 1 warning (1 duplicate) 125s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 125s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 125s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 125s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 125s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 125s Compiling petgraph v0.6.4 125s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/petgraph-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="graphmap"' --cfg 'feature="matrix_graph"' --cfg 'feature="stable_graph"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=11faea72e600ec28 -C extra-filename=-11faea72e600ec28 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern fixedbitset=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libfixedbitset-4f27d8f507162a0c.rmeta --extern indexmap=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 126s warning: unexpected `cfg` condition value: `quickcheck` 126s --> /usr/share/cargo/registry/petgraph-0.6.4/src/lib.rs:149:7 126s | 126s 149 | #[cfg(feature = "quickcheck")] 126s | ^^^^^^^^^^^^^^^^^^^^^^ 126s | 126s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 126s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 126s = note: see for more information about checking conditional configuration 126s = note: `#[warn(unexpected_cfgs)]` on by default 126s 126s warning: use of deprecated method `indexmap::IndexMap::::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior. 126s --> /usr/share/cargo/registry/petgraph-0.6.4/src/graphmap.rs:370:33 126s | 126s 370 | let weight = self.edges.remove(&Self::edge_key(a, b)); 126s | ^^^^^^ 126s | 126s = note: `#[warn(deprecated)]` on by default 126s 127s warning: method `node_bound_with_dummy` is never used 127s --> /usr/share/cargo/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 127s | 127s 106 | trait WithDummy: NodeIndexable { 127s | --------- method in this trait 127s 107 | fn dummy_idx(&self) -> usize; 127s 108 | fn node_bound_with_dummy(&self) -> usize; 127s | ^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = note: `#[warn(dead_code)]` on by default 127s 127s warning: field `first_error` is never read 127s --> /usr/share/cargo/registry/petgraph-0.6.4/src/csr.rs:134:5 127s | 127s 133 | pub struct EdgesNotSorted { 127s | -------------- field in this struct 127s 134 | first_error: (usize, usize), 127s | ^^^^^^^^^^^ 127s | 127s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 127s 127s warning: `petgraph` (lib) generated 5 warnings (1 duplicate) 127s Compiling nom v7.1.3 127s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=40d655e2fb328781 -C extra-filename=-40d655e2fb328781 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern memchr=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern minimal_lexical=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libminimal_lexical-061c55d7bafd6059.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 127s warning: unexpected `cfg` condition value: `cargo-clippy` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:375:13 127s | 127s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 127s | ^^^^^^^^^^^^^^^^^^^^^^^^ 127s | 127s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 127s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 127s = note: see for more information about checking conditional configuration 127s = note: `#[warn(unexpected_cfgs)]` on by default 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:379:12 127s | 127s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:391:12 127s | 127s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:418:14 127s | 127s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unused import: `self::str::*` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:439:9 127s | 127s 439 | pub use self::str::*; 127s | ^^^^^^^^^^^^ 127s | 127s = note: `#[warn(unused_imports)]` on by default 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:49:12 127s | 127s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:96:12 127s | 127s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:340:12 127s | 127s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:357:12 127s | 127s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:374:12 127s | 127s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:392:12 127s | 127s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:409:12 127s | 127s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 127s warning: unexpected `cfg` condition name: `nightly` 127s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:430:12 127s | 127s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 127s | ^^^^^^^ 127s | 127s = help: consider using a Cargo feature instead 127s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 127s [lints.rust] 127s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 127s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 127s = note: see for more information about checking conditional configuration 127s 128s warning: `nom` (lib) generated 14 warnings (1 duplicate) 128s Compiling rand v0.8.5 128s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 128s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=ef125e0fa8f0a0b9 -C extra-filename=-ef125e0fa8f0a0b9 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_core=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 128s | 128s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s = note: `#[warn(unexpected_cfgs)]` on by default 128s 128s warning: unexpected `cfg` condition name: `doc_cfg` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 128s | 128s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 128s | ^^^^^^^ 128s | 128s = 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` 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition name: `doc_cfg` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 128s | 128s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 128s | ^^^^^^^ 128s | 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition name: `features` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 128s | 128s 162 | #[cfg(features = "nightly")] 128s | ^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: see for more information about checking conditional configuration 128s help: there is a config with a similar name and value 128s | 128s 162 | #[cfg(feature = "nightly")] 128s | ~~~~~~~ 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 128s | 128s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 128s | 128s 156 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 128s | 128s 158 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 128s | 128s 160 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 128s | 128s 162 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 128s | 128s 165 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 128s | 128s 167 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 128s | 128s 169 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 128s | 128s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 128s | 128s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 128s | 128s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 128s | 128s 112 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 128s | 128s 142 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 128s | 128s 144 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 128s | 128s 146 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 128s | 128s 148 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 128s | 128s 150 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 128s | 128s 152 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 128s | 128s 155 | feature = "simd_support", 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 128s | 128s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 128s | 128s 144 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition name: `std` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 128s | 128s 235 | #[cfg(not(std))] 128s | ^^^ help: found config with similar value: `feature = "std"` 128s | 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 128s | 128s 363 | #[cfg(feature = "simd_support")] 128s | ^^^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 128s | 128s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 128s | 128s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 128s | 128s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 128s | 128s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 128s | 128s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 128s | 128s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition value: `simd_support` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 128s | 128s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 128s | ^^^^^^^^^^^^^^^^^^^^^^ 128s | 128s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 128s = help: consider adding `simd_support` as a feature in `Cargo.toml` 128s = note: see for more information about checking conditional configuration 128s 128s warning: unexpected `cfg` condition name: `std` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 128s | 128s 291 | #[cfg(not(std))] 128s | ^^^ help: found config with similar value: `feature = "std"` 128s ... 128s 359 | scalar_float_impl!(f32, u32); 128s | ---------------------------- in this macro invocation 128s | 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 128s 128s warning: unexpected `cfg` condition name: `std` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 128s | 128s 291 | #[cfg(not(std))] 128s | ^^^ help: found config with similar value: `feature = "std"` 128s ... 128s 360 | scalar_float_impl!(f64, u64); 128s | ---------------------------- in this macro invocation 128s | 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 128s 128s warning: unexpected `cfg` condition name: `doc_cfg` 128s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 128s | 128s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 128s | ^^^^^^^ 128s | 128s = help: consider using a Cargo feature instead 128s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 128s [lints.rust] 128s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 128s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 128s = note: see for more information about checking conditional configuration 128s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 129s | 129s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 129s | 129s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 129s | 129s 572 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 129s | 129s 679 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 129s | 129s 687 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 129s | 129s 696 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 129s | 129s 706 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 129s | 129s 1001 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 129s | 129s 1003 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 129s | 129s 1005 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 129s | 129s 1007 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 129s | 129s 1010 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 129s | 129s 1012 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition value: `simd_support` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 129s | 129s 1014 | #[cfg(feature = "simd_support")] 129s | ^^^^^^^^^^^^^^^^^^^^^^^^ 129s | 129s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 129s = help: consider adding `simd_support` as a feature in `Cargo.toml` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 129s | 129s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 129s | 129s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 129s | 129s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 129s | 129s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 129s | 129s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 129s | 129s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 129s | 129s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 129s | 129s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 129s | 129s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 129s | 129s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: unexpected `cfg` condition name: `doc_cfg` 129s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 129s | 129s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 129s | ^^^^^^^ 129s | 129s = help: consider using a Cargo feature instead 129s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 129s [lints.rust] 129s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 129s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 129s = note: see for more information about checking conditional configuration 129s 129s warning: trait `Float` is never used 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 129s | 129s 238 | pub(crate) trait Float: Sized { 129s | ^^^^^ 129s | 129s = note: `#[warn(dead_code)]` on by default 129s 129s warning: associated items `lanes`, `extract`, and `replace` are never used 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 129s | 129s 245 | pub(crate) trait FloatAsSIMD: Sized { 129s | ----------- associated items in this trait 129s 246 | #[inline(always)] 129s 247 | fn lanes() -> usize { 129s | ^^^^^ 129s ... 129s 255 | fn extract(self, index: usize) -> Self { 129s | ^^^^^^^ 129s ... 129s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 129s | ^^^^^^^ 129s 129s warning: method `all` is never used 129s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 129s | 129s 266 | pub(crate) trait BoolAsSIMD: Sized { 129s | ---------- method in this trait 129s 267 | fn any(self) -> bool; 129s 268 | fn all(self) -> bool; 129s | ^^^ 129s 129s warning: `rand` (lib) generated 66 warnings (1 duplicate) 129s Compiling wayland-protocols v0.31.2 129s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the officials wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wayland_protocols --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "staging", "unstable", "wayland-client", "wayland-server"))' -C metadata=0c0ebf22363a97c4 -C extra-filename=-0c0ebf22363a97c4 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_client=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rmeta --extern wayland_scanner=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `syn` (lib) generated 1851 warnings (270 duplicates) 130s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_PROCESS=1 CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/debug/deps:/tmp/tmp.B7qMTxtiJf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.B7qMTxtiJf/target/debug/build/nix-18c9c6ab59c87315/build-script-build` 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 130s [nix 0.29.0] cargo:rustc-cfg=linux 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 130s [nix 0.29.0] cargo:rustc-cfg=linux_android 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 130s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=0a13ea327a69f660 -C extra-filename=-0a13ea327a69f660 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 130s warning: unexpected `cfg` condition name: `has_total_cmp` 130s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 130s | 130s 2305 | #[cfg(has_total_cmp)] 130s | ^^^^^^^^^^^^^ 130s ... 130s 2325 | totalorder_impl!(f64, i64, u64, 64); 130s | ----------------------------------- in this macro invocation 130s | 130s = 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` 130s = help: consider using a Cargo feature instead 130s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 130s [lints.rust] 130s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 130s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 130s = note: see for more information about checking conditional configuration 130s = note: `#[warn(unexpected_cfgs)]` on by default 130s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 130s 130s warning: unexpected `cfg` condition name: `has_total_cmp` 130s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 130s | 130s 2311 | #[cfg(not(has_total_cmp))] 130s | ^^^^^^^^^^^^^ 130s ... 130s 2325 | totalorder_impl!(f64, i64, u64, 64); 130s | ----------------------------------- in this macro invocation 130s | 130s = help: consider using a Cargo feature instead 130s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 130s [lints.rust] 130s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 130s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 130s = note: see for more information about checking conditional configuration 130s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 130s 130s warning: unexpected `cfg` condition name: `has_total_cmp` 130s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 130s | 130s 2305 | #[cfg(has_total_cmp)] 130s | ^^^^^^^^^^^^^ 130s ... 130s 2326 | totalorder_impl!(f32, i32, u32, 32); 130s | ----------------------------------- in this macro invocation 130s | 130s = help: consider using a Cargo feature instead 130s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 130s [lints.rust] 130s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 130s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 130s = note: see for more information about checking conditional configuration 130s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 130s 130s warning: unexpected `cfg` condition name: `has_total_cmp` 130s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 130s | 130s 2311 | #[cfg(not(has_total_cmp))] 130s | ^^^^^^^^^^^^^ 130s ... 130s 2326 | totalorder_impl!(f32, i32, u32, 32); 130s | ----------------------------------- in this macro invocation 130s | 130s = help: consider using a Cargo feature instead 130s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 130s [lints.rust] 130s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 130s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 130s = note: see for more information about checking conditional configuration 130s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 130s 130s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 130s Compiling rand_xorshift v0.3.0 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/rand_xorshift-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/rand_xorshift-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator 130s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rngs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name rand_xorshift --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/rand_xorshift-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "serde1"))' -C metadata=6f9a9169531a5b9a -C extra-filename=-6f9a9169531a5b9a --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern rand_core=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 130s warning: `rand_xorshift` (lib) generated 1 warning (1 duplicate) 130s Compiling thiserror-impl v1.0.69 130s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 131s warning: `wayland-protocols` (lib) generated 1 warning (1 duplicate) 131s Compiling lazy_static v1.5.0 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/lazy_static-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 131s warning: elided lifetime has a name 131s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 131s | 131s 26 | pub fn get(&'static self, f: F) -> &T 131s | ^ this elided lifetime gets resolved as `'static` 131s | 131s = note: `#[warn(elided_named_lifetimes)]` on by default 131s help: consider specifying it explicitly 131s | 131s 26 | pub fn get(&'static self, f: F) -> &'static T 131s | +++++++ 131s 131s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 131s Compiling regex-syntax v0.8.5 131s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s Compiling unarray v0.1.4 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unarray CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/unarray-0.1.4 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/unarray-0.1.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for working with uninitialized arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unarray CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cameron1024/unarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name unarray --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/unarray-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4bc01abf17def2c3 -C extra-filename=-4bc01abf17def2c3 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 132s warning: `unarray` (lib) generated 1 warning (1 duplicate) 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/thiserror-1.0.69/src/lib.rs --error-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=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern thiserror_impl=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 132s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 132s Compiling wayland-protocols-wlr v0.2.0 132s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols_wlr CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-wlr-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-wlr-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the WLR wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols-wlr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wayland_protocols_wlr --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/wayland-protocols-wlr-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "wayland-client", "wayland-server"))' -C metadata=013a973e583c7486 -C extra-filename=-013a973e583c7486 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_client=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rmeta --extern wayland_protocols=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-0c0ebf22363a97c4.rmeta --extern wayland_scanner=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 134s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 134s Compiling proptest v1.6.0 134s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/proptest-1.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/proptest-1.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Hypothesis-like property-based testing and shrinking. 134s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.6.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name proptest --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/proptest-1.6.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="bit-set"' --cfg 'feature="default"' --cfg 'feature="fork"' --cfg 'feature="lazy_static"' --cfg 'feature="regex-syntax"' --cfg 'feature="rusty-fork"' --cfg 'feature="std"' --cfg 'feature="tempfile"' --cfg 'feature="timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic64bit", "bit-set", "default", "default-code-coverage", "fork", "handle-panics", "lazy_static", "no_std", "regex-syntax", "rusty-fork", "std", "tempfile", "timeout", "unstable"))' -C metadata=4bfa1843376ba424 -C extra-filename=-4bfa1843376ba424 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bit_set=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbit_set-89b3c1c57b5a03ce.rmeta --extern bit_vec=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern lazy_static=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern num_traits=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-0a13ea327a69f660.rmeta --extern rand=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand-ef125e0fa8f0a0b9.rmeta --extern rand_chacha=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_xorshift=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librand_xorshift-6f9a9169531a5b9a.rmeta --extern regex_syntax=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --extern rusty_fork=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/librusty_fork-50649851fa84c472.rmeta --extern tempfile=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern unarray=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libunarray-4bc01abf17def2c3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 134s warning: unexpected `cfg` condition value: `attr-macro` 134s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:91:7 134s | 134s 91 | #[cfg(feature = "attr-macro")] 134s | ^^^^^^^^^^^^^^^^^^^^^^ 134s | 134s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 134s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 134s = note: see for more information about checking conditional configuration 134s = note: `#[warn(unexpected_cfgs)]` on by default 134s 134s warning: unexpected `cfg` condition value: `attr-macro` 134s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:94:7 134s | 134s 94 | #[cfg(feature = "attr-macro")] 134s | ^^^^^^^^^^^^^^^^^^^^^^ 134s | 134s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 134s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 134s = note: see for more information about checking conditional configuration 134s 134s warning: unexpected `cfg` condition value: `hardware-rng` 134s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:487:9 134s | 134s 487 | feature = "hardware-rng" 134s | ^^^^^^^^^^^^^^^^^^^^^^^^ 134s | 134s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 134s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 134s = note: see for more information about checking conditional configuration 134s 134s warning: unexpected `cfg` condition value: `hardware-rng` 134s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:456:13 134s | 134s 456 | feature = "hardware-rng" 134s | ^^^^^^^^^^^^^^^^^^^^^^^^ 134s | 134s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 134s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 134s = note: see for more information about checking conditional configuration 134s 135s warning: `wayland-protocols-wlr` (lib) generated 1 warning (1 duplicate) 135s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps OUT_DIR=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out rustc --crate-name nix --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=0930f78ed5a2e234 -C extra-filename=-0930f78ed5a2e234 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern bitflags=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 136s warning: struct `NoopFailurePersistence` is never constructed 136s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/failure_persistence/noop.rs:19:8 136s | 136s 19 | struct NoopFailurePersistence; 136s | ^^^^^^^^^^^^^^^^^^^^^^ 136s | 136s = note: `NoopFailurePersistence` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis 136s = note: `#[warn(dead_code)]` on by default 136s 136s warning: `nix` (lib) generated 1 warning (1 duplicate) 136s Compiling proptest-derive v0.4.0 136s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest_derive CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/proptest-derive-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/proptest-derive-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Mazdak Farrokhzad ' CARGO_PKG_DESCRIPTION='Custom-derive for the Arbitrary trait of proptest. 136s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest-derive/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest-derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name proptest_derive --edition=2018 /tmp/tmp.B7qMTxtiJf/registry/proptest-derive-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6474c4970bc8d659 -C extra-filename=-6474c4970bc8d659 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 138s Compiling derive-new v0.5.8 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=derive_new CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/derive-new-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/derive-new-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Nick Cameron ' CARGO_PKG_DESCRIPTION='`#[derive(new)]` implements simple constructor functions for structs and enums.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=derive-new CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nrc/derive-new' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name derive_new --edition=2015 /tmp/tmp.B7qMTxtiJf/registry/derive-new-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d36da1d6c0ebb951 -C extra-filename=-d36da1d6c0ebb951 --out-dir /tmp/tmp.B7qMTxtiJf/target/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern proc_macro2=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 138s warning: `proptest` (lib) generated 6 warnings (1 duplicate) 138s Compiling tree_magic_mini v3.1.6 138s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tree_magic_mini CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/tree_magic_mini-3.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/tree_magic_mini-3.1.6/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Allison Hancock ' CARGO_PKG_DESCRIPTION='Determines the MIME type of a file by traversing a filetype tree.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tree_magic_mini CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/tree_magic/' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.1.6 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name tree_magic_mini --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/tree_magic_mini-3.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("with-gpl-data"))' -C metadata=242d3fc89e043ebe -C extra-filename=-242d3fc89e043ebe --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern fnv=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern memchr=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern nom=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libnom-40d655e2fb328781.rmeta --extern once_cell=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern petgraph=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libpetgraph-11faea72e600ec28.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 139s Compiling os_pipe v1.2.1 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/tmp/tmp.B7qMTxtiJf/registry/os_pipe-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.B7qMTxtiJf/registry/os_pipe-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Jack O'\''Connor' CARGO_PKG_DESCRIPTION='a cross-platform library for opening OS pipes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=os_pipe CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name os_pipe --edition=2021 /tmp/tmp.B7qMTxtiJf/registry/os_pipe-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="io_safety"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("io_safety"))' -C metadata=3c879989e1f7b2c1 -C extra-filename=-3c879989e1f7b2c1 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 139s warning: `os_pipe` (lib) generated 1 warning (1 duplicate) 139s warning: `tree_magic_mini` (lib) generated 1 warning (1 duplicate) 139s Compiling wl-clipboard-rs v0.8.0 (/usr/share/cargo/registry/wl-clipboard-rs-0.8.0) 139s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wl_clipboard_rs CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.B7qMTxtiJf/target/debug/deps rustc --crate-name wl_clipboard_rs --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="dlopen"' --cfg 'feature="native_lib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("dlopen", "native_lib"))' -C metadata=12398c10375d60a0 -C extra-filename=-12398c10375d60a0 --out-dir /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.B7qMTxtiJf/target/debug/deps --extern derive_new=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libderive_new-d36da1d6c0ebb951.so --extern libc=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rlib --extern log=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern nix=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libnix-0930f78ed5a2e234.rlib --extern os_pipe=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libos_pipe-3c879989e1f7b2c1.rlib --extern proptest=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libproptest-4bfa1843376ba424.rlib --extern proptest_derive=/tmp/tmp.B7qMTxtiJf/target/debug/deps/libproptest_derive-6474c4970bc8d659.so --extern tempfile=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rlib --extern thiserror=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib --extern tree_magic_mini=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libtree_magic_mini-242d3fc89e043ebe.rlib --extern wayland_backend=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rlib --extern wayland_client=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rlib --extern wayland_protocols=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-0c0ebf22363a97c4.rlib --extern wayland_protocols_wlr=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols_wlr-013a973e583c7486.rlib --extern wayland_server=/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.B7qMTxtiJf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 139s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 139s --> src/tests/mod.rs:9:5 139s | 139s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 139s | ^^^^^^^^^^^^^ 139s | 139s = note: `#[warn(deprecated)]` on by default 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 139s --> src/tests/mod.rs:9:20 139s | 139s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 139s | ^^^^^^^^^ 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 139s --> src/tests/mod.rs:9:31 139s | 139s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 139s | ^^^^^^^^^^ 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 139s --> src/tests/mod.rs:43:23 139s | 139s 43 | let poll_fd = epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap(); 139s | ^^^^^^^^^^^^^ 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 139s --> src/tests/mod.rs:47:9 139s | 139s 47 | epoll_ctl( 139s | ^^^^^^^^^ 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 139s --> src/tests/mod.rs:55:9 139s | 139s 55 | epoll_ctl( 139s | ^^^^^^^^^ 139s 139s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 139s --> src/tests/mod.rs:92:27 139s | 139s 92 | let nevents = epoll_wait(self.poll_fd.as_raw_fd(), &mut events, -1).unwrap(); 139s | ^^^^^^^^^^ 139s 139s warning: this function depends on never type fallback being `()` 139s --> src/copy.rs:554:5 139s | 139s 554 | pub fn serve(mut self) -> Result<(), Error> { 139s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 139s | 139s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in Rust 2024 and in a future release in all editions! 140s = note: for more information, see issue #123748 140s = help: specify the types explicitly 140s note: in edition 2024, the requirement `!: FromIterator<()>` will fail 140s --> src/copy.rs:591:36 140s | 140s 591 | let result: Result<_, _> = results.into_iter().collect(); 140s | ^^^^^^^^^^^^^^^^^^^ 140s = note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default 140s help: use `()` annotations to avoid fallback changes 140s | 140s 591 | let result: Result<(), _> = results.into_iter().collect(); 140s | ~~ 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/tests/state.rs:37:24 140s | 140s 37 | #[derive(Debug, Clone, Arbitrary)] 140s | ^-------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_OfferInfo` 140s 38 | pub enum OfferInfo { 140s | --------- `OfferInfo` is not local 140s | 140s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: `#[warn(non_local_definitions)]` on by default 140s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/tests/state.rs:73:33 140s | 140s 73 | #[derive(Debug, Clone, Default, Arbitrary)] 140s | ^-------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_SeatInfo` 140s 74 | pub struct SeatInfo { 140s | -------- `SeatInfo` is not local 140s | 140s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/tests/state.rs:79:33 140s | 140s 79 | #[derive(Debug, Clone, Default, Arbitrary)] 140s | ^-------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_State` 140s 80 | pub struct State { 140s | ----- `State` is not local 140s | 140s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/copy.rs:36:25 140s | 140s 36 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 140s | ^------------------------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 140s 37 | pub enum ClipboardType { 140s | ------------- `ClipboardType` is not local 140s | 140s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/copy.rs:55:25 140s | 140s 55 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 140s | ^------------------------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_MimeType` 140s 56 | pub enum MimeType { 140s | -------- `MimeType` is not local 140s | 140s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/copy.rs:68:25 140s | 140s 68 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 140s | ^------------------------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_Source` 140s 69 | pub enum Source { 140s | ------ `Source` is not local 140s | 140s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 140s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 140s --> src/paste.rs:28:25 140s | 140s 28 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 140s | ^------------------------- 140s | | 140s | `Arbitrary` is not local 140s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 140s 29 | pub enum ClipboardType { 140s | ------------- `ClipboardType` is not local 140s | 140s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 140s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 140s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 140s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 140s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 140s 143s warning: `wl-clipboard-rs` (lib test) generated 16 warnings (1 duplicate) (run `cargo fix --lib -p wl-clipboard-rs --tests` to apply 1 suggestion) 143s Finished `test` profile [unoptimized + debuginfo] target(s) in 35.43s 143s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.B7qMTxtiJf/target/s390x-unknown-linux-gnu/debug/deps/wl_clipboard_rs-12398c10375d60a0` 143s 143s running 23 tests 143s test tests::copy::clear_test ... ok 143s test tests::copy::copy_large ... ok 143s test tests::copy::copy_multi_no_additional_text_mime_types_test ... ok 143s test tests::copy::copy_multi_test ... ok 143s test tests::copy::copy_test ... ok 144s test tests::paste::get_contents_randomized ... ok 144s test tests::paste::get_contents_test ... ok 144s test tests::paste::get_contents_wrong_mime_type ... ok 144s test tests::paste::get_mime_types_empty_clipboard ... ok 144s test tests::paste::get_mime_types_no_data_control ... ok 144s test tests::paste::get_mime_types_no_data_control_2 ... ok 144s test tests::paste::get_mime_types_no_seats ... ok 144s test tests::paste::get_mime_types_primary ... ok 145s test tests::paste::get_mime_types_randomized ... ok 145s test tests::paste::get_mime_types_specific_seat ... ok 145s test tests::paste::get_mime_types_test ... ok 145s test tests::utils::is_primary_selection_supported_data_control_v1 ... ok 145s test tests::utils::is_primary_selection_supported_no_data_control ... ok 145s test tests::utils::is_primary_selection_supported_no_seats ... ok 145s test tests::utils::is_primary_selection_supported_primary_selection_unsupported ... ok 145s test tests::utils::is_primary_selection_supported_test ... ok 145s test tests::utils::supports_v2_seats ... ok 145s test tests::copy::copy_randomized ... ok 145s 145s test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.61s 145s 145s /tmp/autopkgtest.4cJX46/wrapper.sh: checking for leaked background processes... 145s /tmp/autopkgtest.4cJX46/wrapper.sh: waiting for tee/cat subprocesses... 145s /tmp/autopkgtest.4cJX46/wrapper.sh: cleaning up... 145s /tmp/autopkgtest.4cJX46/wrapper.sh: Exit status: 0 145s autopkgtest: DBG: testbed command exited with code 0 145s autopkgtest [07:33:53]: test rust-wl-clipboard-rs:@: -----------------------] 145s autopkgtest: DBG: testbed executing test finished with exit status 0 145s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs%3A%40-stdout /tmp/autopkgtest-work.oh9g3vy4/out/rust-wl-clipboard-rs%3A%40-stdout 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs%3A%40-stderr /tmp/autopkgtest-work.oh9g3vy4/out/rust-wl-clipboard-rs%3A%40-stderr 147s autopkgtest: DBG: got reply from testbed: ok 147s rust-wl-clipboard-rs:@ PASS 147s autopkgtest [07:33:55]: test rust-wl-clipboard-rs:@: - - - - - - - - - - results - - - - - - - - - - 147s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs%3A%40-artifacts/ /tmp/autopkgtest-work.oh9g3vy4/out/artifacts/ 147s autopkgtest: DBG: got reply from testbed: ok 147s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4cJX46/rust-wl-clipboard-rs:@-artifacts', '/tmp/autopkgtest.4cJX46/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest [07:33:56]: test librust-wl-clipboard-rs-dev:default: preparing testbed 148s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'], deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 148s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 148s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 148s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev 148s autopkgtest: DBG: can use apt-get on testbed: True 148s 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-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 148s Reading package lists... 148s Building dependency tree... 148s Reading state information... 148s Starting pkgProblemResolver with broken count: 0 148s Starting 2 pkgProblemResolver with broken count: 0 148s Done 148s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wl-clipboard-rs-dev'], kind short, sout pipe, serr pipe, env [] 148s autopkgtest: DBG: testbed command exited with code 0 148s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-packages.all"], kind short, sout raw, serr pipe, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adefault-packages.all /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adefault-packages.all 149s autopkgtest: DBG: got reply from testbed: ok 149s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4cJX46/build.9ba/src'], kind short, sout raw, serr raw, env [] 149s autopkgtest: DBG: testbed command exited with code 0 149s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4cJX46/build.9ba/src already exists 149s autopkgtest [07:33:57]: test librust-wl-clipboard-rs-dev:default: /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets 149s autopkgtest [07:33:57]: test librust-wl-clipboard-rs-dev:default: [----------------------- 149s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4cJX46/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-artifacts --chdir=/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/librust-wl-clipboard-rs-dev:default-stderr --stdout=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-stdout --tmp=/tmp/autopkgtest.4cJX46/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 wl-clipboard-rs 0.8.0 --all-targets'"], kind test, sout raw, serr raw, env [] 149s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-artifacts 149s /tmp/autopkgtest.4cJX46/wrapper.sh: changing to directory: /tmp/autopkgtest.4cJX46/build.9ba/src 149s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 149s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 149s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 149s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 149s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: LANG=C.UTF-8 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LANGUAGE 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ADDRESS 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ALL 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_COLLATE 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_CTYPE 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_IDENTIFICATION 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MEASUREMENT 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MESSAGES 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MONETARY 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NAME 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NUMERIC 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_PAPER 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TELEPHONE 149s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TIME 149s /tmp/autopkgtest.4cJX46/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 149s /tmp/autopkgtest.4cJX46/wrapper.sh: pretending to be a login shell 149s /tmp/autopkgtest.4cJX46/wrapper.sh: will write standard error to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-stderr 149s /tmp/autopkgtest.4cJX46/wrapper.sh: will write stdout to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-stdout 149s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4cJX46/autopkgtest_tmp 149s /tmp/autopkgtest.4cJX46/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 149s /tmp/autopkgtest.4cJX46/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets 149s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.NZFwH8xVS2/out to stdout and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-stdout 149s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.NZFwH8xVS2/err to standard error and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-stdout 149s /tmp/autopkgtest.4cJX46/wrapper.sh: writing script pid 6395 to /tmp/autopkgtest_script_pid 149s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 149s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 149s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 149s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.8OicaKR706/registry/ 149s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 149s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 149s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 149s 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'],) {} 149s Compiling proc-macro2 v1.0.92 149s Compiling libc v0.2.169 149s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.8OicaKR706/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 149s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 149s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 150s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 150s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 150s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 150s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 150s Compiling unicode-ident v1.0.13 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.8OicaKR706/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 150s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 150s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 150s [libc 0.2.169] cargo:rerun-if-changed=build.rs 150s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 150s [libc 0.2.169] cargo:rustc-cfg=freebsd11 150s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 150s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.8OicaKR706/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern unicode_ident=/tmp/tmp.8OicaKR706/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 150s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.8OicaKR706/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 150s warning: unused import: `crate::ntptimeval` 150s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 150s | 150s 5 | use crate::ntptimeval; 150s | ^^^^^^^^^^^^^^^^^ 150s | 150s = note: `#[warn(unused_imports)]` on by default 150s 150s Compiling quote v1.0.37 150s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.8OicaKR706/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 151s Compiling rustix v0.38.37 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 151s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 151s | 151s = note: this feature is not stably supported; its behavior can change in the future 151s 151s warning: `libc` (lib) generated 2 warnings 151s Compiling bitflags v2.8.0 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 151s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.8OicaKR706/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 151s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 151s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 151s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 151s [rustix 0.38.37] cargo:rustc-cfg=libc 151s [rustix 0.38.37] cargo:rustc-cfg=linux_like 151s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 151s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 151s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 151s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 151s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 151s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 151s Compiling errno v0.3.8 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.8OicaKR706/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 151s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 151s Compiling linux-raw-sys v0.4.14 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.8OicaKR706/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 151s warning: unexpected `cfg` condition value: `bitrig` 151s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 151s | 151s 77 | target_os = "bitrig", 151s | ^^^^^^^^^^^^^^^^^^^^ 151s | 151s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 151s = note: see for more information about checking conditional configuration 151s = note: `#[warn(unexpected_cfgs)]` on by default 151s 151s warning: `errno` (lib) generated 2 warnings (1 duplicate) 151s Compiling cfg-if v1.0.0 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/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] 151s parameters. Structured like an if-else chain, the first matching branch is the 151s item that gets emitted. 151s ' 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.8OicaKR706/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.8OicaKR706/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.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 151s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 151s Compiling syn v2.0.96 151s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.8OicaKR706/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.8OicaKR706/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 152s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 152s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.8OicaKR706/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c0552d419ea96692 -C extra-filename=-c0552d419ea96692 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 154s Compiling shlex v1.3.0 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.8OicaKR706/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 154s warning: unexpected `cfg` condition name: `manual_codegen_check` 154s --> /tmp/tmp.8OicaKR706/registry/shlex-1.3.0/src/bytes.rs:353:12 154s | 154s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 154s | ^^^^^^^^^^^^^^^^^^^^ 154s | 154s = 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` 154s = help: consider using a Cargo feature instead 154s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 154s [lints.rust] 154s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 154s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 154s = note: see for more information about checking conditional configuration 154s = note: `#[warn(unexpected_cfgs)]` on by default 154s 154s warning: `shlex` (lib) generated 1 warning 154s Compiling pkg-config v0.3.31 154s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 154s Cargo build scripts. 154s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.8OicaKR706/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 154s warning: unreachable expression 154s --> /tmp/tmp.8OicaKR706/registry/pkg-config-0.3.31/src/lib.rs:596:9 154s | 154s 592 | return true; 154s | ----------- any code following this expression is unreachable 154s ... 154s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 154s 597 | | // don't use pkg-config if explicitly disabled 154s 598 | | Some(ref val) if val == "0" => false, 154s 599 | | Some(_) => true, 154s ... | 154s 605 | | } 154s 606 | | } 154s | |_________^ unreachable expression 154s | 154s = note: `#[warn(unreachable_code)]` on by default 154s 155s warning: `pkg-config` (lib) generated 1 warning 155s Compiling wayland-sys v0.31.6 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern pkg_config=/tmp/tmp.8OicaKR706/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 155s Compiling cc v1.1.14 155s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 155s C compiler to compile native C code into a static archive to be linked into Rust 155s code. 155s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.8OicaKR706/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern shlex=/tmp/tmp.8OicaKR706/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 156s warning: `rustix` (lib) generated 1 warning (1 duplicate) 156s Compiling getrandom v0.2.15 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.8OicaKR706/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern cfg_if=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 156s warning: unexpected `cfg` condition value: `js` 156s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 156s | 156s 334 | } else if #[cfg(all(feature = "js", 156s | ^^^^^^^^^^^^^^ 156s | 156s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 156s = help: consider adding `js` as a feature in `Cargo.toml` 156s = note: see for more information about checking conditional configuration 156s = note: `#[warn(unexpected_cfgs)]` on by default 156s 156s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 156s Compiling memchr v2.7.4 156s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 156s 1, 2 or 3 byte search and single substring search. 156s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.8OicaKR706/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 157s Compiling quick-xml v0.36.1 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.8OicaKR706/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern memchr=/tmp/tmp.8OicaKR706/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 157s warning: unexpected `cfg` condition value: `document-features` 157s --> /tmp/tmp.8OicaKR706/registry/quick-xml-0.36.1/src/lib.rs:42:5 157s | 157s 42 | feature = "document-features", 157s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 157s | 157s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 157s = help: consider adding `document-features` as a feature in `Cargo.toml` 157s = note: see for more information about checking conditional configuration 157s = note: `#[warn(unexpected_cfgs)]` on by default 157s 157s warning: elided lifetime has a name 157s --> /tmp/tmp.8OicaKR706/registry/quick-xml-0.36.1/src/writer.rs:146:73 157s | 157s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 157s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 157s | 157s = note: `#[warn(elided_named_lifetimes)]` on by default 157s 157s Compiling wayland-backend v0.3.8 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.8OicaKR706/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern cc=/tmp/tmp.8OicaKR706/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 157s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 157s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 157s Compiling zerocopy-derive v0.7.34 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.8OicaKR706/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=421d942aa06bb9ce -C extra-filename=-421d942aa06bb9ce --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.8OicaKR706/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 157s warning: `quick-xml` (lib) generated 2 warnings 157s Compiling smallvec v1.13.2 157s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.8OicaKR706/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 158s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 158s Compiling io-lifetimes v2.0.3 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 158s Compiling downcast-rs v1.2.0 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 158s parameters, associated types, and type constraints. 158s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.8OicaKR706/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 158s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 158s Compiling byteorder v1.5.0 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.8OicaKR706/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 158s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 158s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=64ae102d56f82b13 -C extra-filename=-64ae102d56f82b13 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern downcast_rs=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern smallvec=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 159s Compiling zerocopy v0.7.34 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.8OicaKR706/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=3741d75984c9d7af -C extra-filename=-3741d75984c9d7af --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern byteorder=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.8OicaKR706/target/debug/deps/libzerocopy_derive-421d942aa06bb9ce.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 159s | 159s 597 | let remainder = t.addr() % mem::align_of::(); 159s | ^^^^^^^^^^^^^^^^^^ 159s | 159s note: the lint level is defined here 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 159s | 159s 174 | unused_qualifications, 159s | ^^^^^^^^^^^^^^^^^^^^^ 159s help: remove the unnecessary path segments 159s | 159s 597 - let remainder = t.addr() % mem::align_of::(); 159s 597 + let remainder = t.addr() % align_of::(); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 159s | 159s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 159s | ^^^^^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 159s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 159s | 159s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 159s | ^^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 159s 488 + align: match NonZeroUsize::new(align_of::()) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 159s | 159s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 159s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 159s | 159s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 159s | ^^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 159s 511 + align: match NonZeroUsize::new(align_of::()) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 159s | 159s 517 | _elem_size: mem::size_of::(), 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 517 - _elem_size: mem::size_of::(), 159s 517 + _elem_size: size_of::(), 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 159s | 159s 1418 | let len = mem::size_of_val(self); 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 1418 - let len = mem::size_of_val(self); 159s 1418 + let len = size_of_val(self); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 159s | 159s 2714 | let len = mem::size_of_val(self); 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 2714 - let len = mem::size_of_val(self); 159s 2714 + let len = size_of_val(self); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 159s | 159s 2789 | let len = mem::size_of_val(self); 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 2789 - let len = mem::size_of_val(self); 159s 2789 + let len = size_of_val(self); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 159s | 159s 2863 | if bytes.len() != mem::size_of_val(self) { 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 2863 - if bytes.len() != mem::size_of_val(self) { 159s 2863 + if bytes.len() != size_of_val(self) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 159s | 159s 2920 | let size = mem::size_of_val(self); 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 2920 - let size = mem::size_of_val(self); 159s 2920 + let size = size_of_val(self); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 159s | 159s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 159s | ^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 159s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 159s | 159s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 159s | 159s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 159s | 159s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 159s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 159s | 159s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 159s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 159s | 159s 4221 | .checked_rem(mem::size_of::()) 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4221 - .checked_rem(mem::size_of::()) 159s 4221 + .checked_rem(size_of::()) 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 159s | 159s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 159s 4243 + let expected_len = match size_of::().checked_mul(count) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 159s | 159s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 159s 4268 + let expected_len = match size_of::().checked_mul(count) { 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 159s | 159s 4795 | let elem_size = mem::size_of::(); 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4795 - let elem_size = mem::size_of::(); 159s 4795 + let elem_size = size_of::(); 159s | 159s 159s warning: unnecessary qualification 159s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 159s | 159s 4825 | let elem_size = mem::size_of::(); 159s | ^^^^^^^^^^^^^^^^^ 159s | 159s help: remove the unnecessary path segments 159s | 159s 4825 - let elem_size = mem::size_of::(); 159s 4825 + let elem_size = size_of::(); 159s | 159s 159s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 159s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 159s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 159s Compiling wayland-scanner v0.31.6 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.8OicaKR706/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 159s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 159s Compiling rand_core v0.6.4 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 159s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.8OicaKR706/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern getrandom=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 159s | 159s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 159s | ^^^^^^^ 159s | 159s = 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` 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s = note: `#[warn(unexpected_cfgs)]` on by default 159s 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 159s | 159s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 159s | ^^^^^^^ 159s | 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 159s | 159s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 159s | ^^^^^^^ 159s | 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 159s | 159s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 159s | ^^^^^^^ 159s | 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 159s | 159s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 159s | ^^^^^^^ 159s | 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s 159s warning: unexpected `cfg` condition name: `doc_cfg` 159s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 159s | 159s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 159s | ^^^^^^^ 159s | 159s = help: consider using a Cargo feature instead 159s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 159s [lints.rust] 159s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 159s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 159s = note: see for more information about checking conditional configuration 159s 159s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 159s Compiling autocfg v1.1.0 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.8OicaKR706/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 159s Compiling once_cell v1.20.2 159s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.8OicaKR706/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 160s Compiling syn v1.0.109 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.8OicaKR706/registry/syn-1.0.109/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="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=ae566e665d1cad87 -C extra-filename=-ae566e665d1cad87 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/syn-ae566e665d1cad87 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLONE_IMPLS=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_FULL=1 CARGO_FEATURE_PARSING=1 CARGO_FEATURE_PRINTING=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_FEATURE_QUOTE=1 CARGO_FEATURE_VISIT=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/debug/build/syn-a11c9578ec111a71/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/syn-ae566e665d1cad87/build-script-build` 160s [syn 1.0.109] cargo:rustc-cfg=syn_disable_nightly_tests 160s Compiling num-traits v0.2.19 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=8f779d9fad25b2ca -C extra-filename=-8f779d9fad25b2ca --out-dir /tmp/tmp.8OicaKR706/target/debug/build/num-traits-8f779d9fad25b2ca -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern autocfg=/tmp/tmp.8OicaKR706/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 160s Compiling ppv-lite86 v0.2.20 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.8OicaKR706/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=d52b670bf7bd562c -C extra-filename=-d52b670bf7bd562c --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern zerocopy=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-3741d75984c9d7af.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.8OicaKR706/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: unexpected `cfg` condition name: `wasi_ext` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 160s | 160s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 160s | ^^^^^^^^ 160s | 160s = 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` 160s = help: consider using a Cargo feature instead 160s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 160s [lints.rust] 160s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 160s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 160s = note: see for more information about checking conditional configuration 160s = note: `#[warn(unexpected_cfgs)]` on by default 160s 160s warning: unexpected `cfg` condition name: `doc_cfg` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 160s | 160s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 160s | ^^^^^^^ 160s | 160s = help: consider using a Cargo feature instead 160s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 160s [lints.rust] 160s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 160s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 160s | 160s 239 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 160s | 160s 242 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 160s | 160s 245 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 160s | 160s 248 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 160s | 160s 251 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `async_std` 160s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 160s | 160s 254 | #[cfg(feature = "async_std")] 160s | ^^^^^^^^^^----------- 160s | | 160s | help: there is a expected value with a similar name: `"async-std"` 160s | 160s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 160s = help: consider adding `async_std` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 160s Compiling equivalent v1.0.1 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.8OicaKR706/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 160s Compiling hashbrown v0.14.5 160s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.8OicaKR706/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 160s | 160s 14 | feature = "nightly", 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s = note: `#[warn(unexpected_cfgs)]` on by default 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 160s | 160s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 160s | 160s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 160s | 160s 49 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 160s | 160s 59 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 160s | 160s 65 | #[cfg(not(feature = "nightly"))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 160s | 160s 53 | #[cfg(not(feature = "nightly"))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 160s | 160s 55 | #[cfg(not(feature = "nightly"))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 160s | 160s 57 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 160s | 160s 3549 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 160s | 160s 3661 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 160s | 160s 3678 | #[cfg(not(feature = "nightly"))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 160s | 160s 4304 | #[cfg(feature = "nightly")] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 160s = help: consider adding `nightly` as a feature in `Cargo.toml` 160s = note: see for more information about checking conditional configuration 160s 160s warning: unexpected `cfg` condition value: `nightly` 160s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 160s | 160s 4319 | #[cfg(not(feature = "nightly"))] 160s | ^^^^^^^^^^^^^^^^^^^ 160s | 160s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 161s | 161s 7 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 161s | 161s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 161s | 161s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 161s | 161s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `rkyv` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 161s | 161s 3 | #[cfg(feature = "rkyv")] 161s | ^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `rkyv` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 161s | 161s 242 | #[cfg(not(feature = "nightly"))] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 161s | 161s 255 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 161s | 161s 6517 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 161s | 161s 6523 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 161s | 161s 6591 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 161s | 161s 6597 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 161s | 161s 6651 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 161s | 161s 6657 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 161s | 161s 1359 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 161s | 161s 1365 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 161s | 161s 1383 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: unexpected `cfg` condition value: `nightly` 161s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 161s | 161s 1389 | #[cfg(feature = "nightly")] 161s | ^^^^^^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 161s = help: consider adding `nightly` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 161s Compiling fastrand v2.1.1 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.8OicaKR706/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: unexpected `cfg` condition value: `js` 161s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 161s | 161s 202 | feature = "js" 161s | ^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `alloc`, `default`, and `std` 161s = help: consider adding `js` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s = note: `#[warn(unexpected_cfgs)]` on by default 161s 161s warning: unexpected `cfg` condition value: `js` 161s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 161s | 161s 214 | not(feature = "js") 161s | ^^^^^^^^^^^^^^ 161s | 161s = note: expected values for `feature` are: `alloc`, `default`, and `std` 161s = help: consider adding `js` as a feature in `Cargo.toml` 161s = note: see for more information about checking conditional configuration 161s 161s Compiling cfg_aliases v0.2.1 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.8OicaKR706/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 161s Compiling fnv v1.0.7 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/fnv-1.0.7 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/fnv-1.0.7/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Fowler–Noll–Vo hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 / MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fnv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-fnv' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.7 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name fnv --edition=2015 /tmp/tmp.8OicaKR706/registry/fnv-1.0.7/lib.rs --error-format=json --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=a68fdaac9d04d051 -C extra-filename=-a68fdaac9d04d051 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: `fnv` (lib) generated 1 warning (1 duplicate) 161s Compiling nix v0.29.0 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=18c9c6ab59c87315 -C extra-filename=-18c9c6ab59c87315 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/nix-18c9c6ab59c87315 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern cfg_aliases=/tmp/tmp.8OicaKR706/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 161s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 161s Compiling tempfile v3.15.0 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.8OicaKR706/registry/tempfile-3.15.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="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=7264ab473cee172b -C extra-filename=-7264ab473cee172b --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern cfg_if=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern fastrand=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern getrandom=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --extern once_cell=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern rustix=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 161s warning: `tempfile` (lib) generated 1 warning (1 duplicate) 161s Compiling wayland-server v0.31.1 161s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wayland_server --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-server-0.31.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("log"))' -C metadata=234e84df41e54b81 -C extra-filename=-234e84df41e54b81 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern downcast_rs=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern io_lifetimes=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rmeta --extern rustix=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_scanner=/tmp/tmp.8OicaKR706/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 162s Compiling wayland-client v0.31.2 162s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_client CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-client-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-client-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, client side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-client CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wayland_client --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-client-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=27bc269d25896513 -C extra-filename=-27bc269d25896513 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern rustix=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_scanner=/tmp/tmp.8OicaKR706/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/lib.rs:165:13 162s | 162s 165 | #![cfg_attr(coverage, feature(coverage_attribute))] 162s | ^^^^^^^^ 162s | 162s = 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` 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s = note: `#[warn(unexpected_cfgs)]` on by default 162s 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:123:16 162s | 162s 123 | #[cfg_attr(coverage, coverage(off))] 162s | ^^^^^^^^ 162s | 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:197:16 162s | 162s 197 | #[cfg_attr(coverage, coverage(off))] 162s | ^^^^^^^^ 162s | 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:347:16 162s | 162s 347 | #[cfg_attr(coverage, coverage(off))] 162s | ^^^^^^^^ 162s | 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:589:16 162s | 162s 589 | #[cfg_attr(coverage, coverage(off))] 162s | ^^^^^^^^ 162s | 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s 162s warning: unexpected `cfg` condition name: `coverage` 162s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:696:16 162s | 162s 696 | #[cfg_attr(coverage, coverage(off))] 162s | ^^^^^^^^ 162s | 162s = help: consider using a Cargo feature instead 162s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 162s [lints.rust] 162s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 162s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 162s = note: see for more information about checking conditional configuration 162s 163s warning: `wayland-server` (lib) generated 1 warning (1 duplicate) 163s Compiling indexmap v2.7.0 163s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.8OicaKR706/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern equivalent=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 163s warning: unexpected `cfg` condition value: `borsh` 163s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 163s | 163s 117 | #[cfg(feature = "borsh")] 163s | ^^^^^^^^^^^^^^^^^ 163s | 163s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 163s = help: consider adding `borsh` as a feature in `Cargo.toml` 163s = note: see for more information about checking conditional configuration 163s = note: `#[warn(unexpected_cfgs)]` on by default 163s 163s warning: unexpected `cfg` condition value: `rustc-rayon` 163s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 163s | 163s 131 | #[cfg(feature = "rustc-rayon")] 163s | ^^^^^^^^^^^^^^^^^^^^^^^ 163s | 163s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 163s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 163s = note: see for more information about checking conditional configuration 163s 163s warning: unexpected `cfg` condition value: `quickcheck` 163s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 163s | 163s 38 | #[cfg(feature = "quickcheck")] 163s | ^^^^^^^^^^^^^^^^^^^^^^ 163s | 163s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 163s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 163s = note: see for more information about checking conditional configuration 163s 163s warning: unexpected `cfg` condition value: `rustc-rayon` 163s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 163s | 163s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 163s | ^^^^^^^^^^^^^^^^^^^^^^^ 163s | 163s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 163s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 163s = note: see for more information about checking conditional configuration 163s 163s warning: unexpected `cfg` condition value: `rustc-rayon` 163s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 163s | 163s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 163s | ^^^^^^^^^^^^^^^^^^^^^^^ 163s | 163s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 163s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 163s = note: see for more information about checking conditional configuration 163s 163s warning: `wayland-client` (lib) generated 7 warnings (1 duplicate) 163s Compiling rand_chacha v0.3.1 163s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 163s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.8OicaKR706/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=c588a1d47b064f6f -C extra-filename=-c588a1d47b064f6f --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern ppv_lite86=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-d52b670bf7bd562c.rmeta --extern rand_core=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 163s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 163s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/num-traits-8f779d9fad25b2ca/build-script-build` 163s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 163s [num-traits 0.2.19] | 163s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 163s [num-traits 0.2.19] 163s [num-traits 0.2.19] warning: 1 warning emitted 163s [num-traits 0.2.19] 163s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 163s [num-traits 0.2.19] | 163s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 163s [num-traits 0.2.19] 163s [num-traits 0.2.19] warning: 1 warning emitted 163s [num-traits 0.2.19] 163s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 163s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 163s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/debug/build/syn-a11c9578ec111a71/out rustc --crate-name syn --edition=2018 /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=d2c69931b37190d8 -C extra-filename=-d2c69931b37190d8 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.8OicaKR706/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg syn_disable_nightly_tests` 164s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 164s Compiling wait-timeout v0.2.0 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wait_timeout CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wait-timeout-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wait-timeout-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A crate to wait on a child process with a timeout specified across Unix and 164s Windows platforms. 164s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wait-timeout CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wait_timeout --edition=2015 /tmp/tmp.8OicaKR706/registry/wait-timeout-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c8041ffbea216b96 -C extra-filename=-c8041ffbea216b96 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 164s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 164s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:27:23 164s | 164s 27 | use std::sync::{Once, ONCE_INIT, Mutex}; 164s | ^^^^^^^^^ 164s | 164s note: the lint level is defined here 164s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/lib.rs:31:23 164s | 164s 31 | #![deny(missing_docs, warnings)] 164s | ^^^^^^^^ 164s = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` 164s 164s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 164s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:32:21 164s | 164s 32 | static INIT: Once = ONCE_INIT; 164s | ^^^^^^^^^ 164s | 164s help: replace the use of the deprecated constant 164s | 164s 32 | static INIT: Once = Once::new(); 164s | ~~~~~~~~~~~ 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:254:13 164s | 164s 254 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 164s | ^^^^^^^ 164s | 164s = 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` 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: `#[warn(unexpected_cfgs)]` on by default 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:430:12 164s | 164s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:434:12 164s | 164s 434 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:455:12 164s | 164s 455 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:804:12 164s | 164s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:867:12 164s | 164s 867 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:887:12 164s | 164s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:916:12 164s | 164s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:959:12 164s | 164s 959 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/group.rs:136:12 164s | 164s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/group.rs:214:12 164s | 164s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/group.rs:269:12 164s | 164s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:561:12 164s | 164s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:569:12 164s | 164s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:881:11 164s | 164s 881 | #[cfg(not(syn_omit_await_from_token_macro))] 164s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:883:7 164s | 164s 883 | #[cfg(syn_omit_await_from_token_macro)] 164s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:394:24 164s | 164s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:398:24 164s | 164s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:406:24 164s | 164s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:414:24 164s | 164s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:418:24 164s | 164s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:426:24 164s | 164s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 556 | / define_punctuation_structs! { 164s 557 | | "_" pub struct Underscore/1 /// `_` 164s 558 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:271:24 164s | 164s 271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:275:24 164s | 164s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:283:24 164s | 164s 283 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:291:24 164s | 164s 291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:295:24 164s | 164s 295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:303:24 164s | 164s 303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:309:24 164s | 164s 309 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:317:24 164s | 164s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s ... 164s 652 | / define_keywords! { 164s 653 | | "abstract" pub struct Abstract /// `abstract` 164s 654 | | "as" pub struct As /// `as` 164s 655 | | "async" pub struct Async /// `async` 164s ... | 164s 704 | | "yield" pub struct Yield /// `yield` 164s 705 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:444:24 164s | 164s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:452:24 164s | 164s 452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:394:24 164s | 164s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:398:24 164s | 164s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:406:24 164s | 164s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:414:24 164s | 164s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:418:24 164s | 164s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:426:24 164s | 164s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | / define_punctuation! { 164s 708 | | "+" pub struct Add/1 /// `+` 164s 709 | | "+=" pub struct AddEq/2 /// `+=` 164s 710 | | "&" pub struct And/1 /// `&` 164s ... | 164s 753 | | "~" pub struct Tilde/1 /// `~` 164s 754 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:503:24 164s | 164s 503 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:507:24 164s | 164s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:515:24 164s | 164s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:523:24 164s | 164s 523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:527:24 164s | 164s 527 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/token.rs:535:24 164s | 164s 535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 756 | / define_delimiters! { 164s 757 | | "{" pub struct Brace /// `{...}` 164s 758 | | "[" pub struct Bracket /// `[...]` 164s 759 | | "(" pub struct Paren /// `(...)` 164s 760 | | " " pub struct Group /// None-delimited group 164s 761 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ident.rs:38:12 164s | 164s 38 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:463:12 164s | 164s 463 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:148:16 164s | 164s 148 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:329:16 164s | 164s 329 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:360:16 164s | 164s 360 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:336:1 164s | 164s 336 | / ast_enum_of_structs! { 164s 337 | | /// Content of a compile-time structured attribute. 164s 338 | | /// 164s 339 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 369 | | } 164s 370 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:377:16 164s | 164s 377 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:390:16 164s | 164s 390 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:417:16 164s | 164s 417 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:412:1 164s | 164s 412 | / ast_enum_of_structs! { 164s 413 | | /// Element of a compile-time attribute list. 164s 414 | | /// 164s 415 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 425 | | } 164s 426 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:165:16 164s | 164s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:213:16 164s | 164s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:223:16 164s | 164s 223 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:237:16 164s | 164s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:251:16 164s | 164s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:557:16 164s | 164s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:565:16 164s | 164s 565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:573:16 164s | 164s 573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:581:16 164s | 164s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:630:16 164s | 164s 630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:644:16 164s | 164s 644 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/attr.rs:654:16 164s | 164s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:9:16 164s | 164s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:36:16 164s | 164s 36 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:25:1 164s | 164s 25 | / ast_enum_of_structs! { 164s 26 | | /// Data stored within an enum variant or struct. 164s 27 | | /// 164s 28 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 47 | | } 164s 48 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:56:16 164s | 164s 56 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:68:16 164s | 164s 68 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:153:16 164s | 164s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:185:16 164s | 164s 185 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:173:1 164s | 164s 173 | / ast_enum_of_structs! { 164s 174 | | /// The visibility level of an item: inherited or `pub` or 164s 175 | | /// `pub(restricted)`. 164s 176 | | /// 164s ... | 164s 199 | | } 164s 200 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:207:16 164s | 164s 207 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:218:16 164s | 164s 218 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:230:16 164s | 164s 230 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:246:16 164s | 164s 246 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:275:16 164s | 164s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:286:16 164s | 164s 286 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:327:16 164s | 164s 327 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:299:20 164s | 164s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:315:20 164s | 164s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:423:16 164s | 164s 423 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:436:16 164s | 164s 436 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:445:16 164s | 164s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:454:16 164s | 164s 454 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:467:16 164s | 164s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:474:16 164s | 164s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/data.rs:481:16 164s | 164s 481 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:89:16 164s | 164s 89 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:90:20 164s | 164s 90 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:14:1 164s | 164s 14 | / ast_enum_of_structs! { 164s 15 | | /// A Rust expression. 164s 16 | | /// 164s 17 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 249 | | } 164s 250 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:256:16 164s | 164s 256 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:268:16 164s | 164s 268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:281:16 164s | 164s 281 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:294:16 164s | 164s 294 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:307:16 164s | 164s 307 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:321:16 164s | 164s 321 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:334:16 164s | 164s 334 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:346:16 164s | 164s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:359:16 164s | 164s 359 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:373:16 164s | 164s 373 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:387:16 164s | 164s 387 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:400:16 164s | 164s 400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:418:16 164s | 164s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:431:16 164s | 164s 431 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:444:16 164s | 164s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:464:16 164s | 164s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:480:16 164s | 164s 480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:495:16 164s | 164s 495 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:508:16 164s | 164s 508 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:523:16 164s | 164s 523 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:534:16 164s | 164s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:547:16 164s | 164s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:558:16 164s | 164s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:572:16 164s | 164s 572 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:588:16 164s | 164s 588 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:604:16 164s | 164s 604 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:616:16 164s | 164s 616 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:629:16 164s | 164s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:643:16 164s | 164s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:657:16 164s | 164s 657 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:672:16 164s | 164s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:687:16 164s | 164s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:699:16 164s | 164s 699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:711:16 164s | 164s 711 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:723:16 164s | 164s 723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:737:16 164s | 164s 737 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:749:16 164s | 164s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:761:16 164s | 164s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:775:16 164s | 164s 775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:850:16 164s | 164s 850 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:920:16 164s | 164s 920 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:968:16 164s | 164s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:982:16 164s | 164s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:999:16 164s | 164s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1021:16 164s | 164s 1021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1049:16 164s | 164s 1049 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1065:16 164s | 164s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:246:15 164s | 164s 246 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:784:40 164s | 164s 784 | #[cfg(all(feature = "parsing", not(syn_no_const_vec_new)))] 164s | ^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:838:19 164s | 164s 838 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1159:16 164s | 164s 1159 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1880:16 164s | 164s 1880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1975:16 164s | 164s 1975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2001:16 164s | 164s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2063:16 164s | 164s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2084:16 164s | 164s 2084 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2101:16 164s | 164s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2119:16 164s | 164s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2147:16 164s | 164s 2147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2165:16 164s | 164s 2165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2206:16 164s | 164s 2206 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2236:16 164s | 164s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2258:16 164s | 164s 2258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2326:16 164s | 164s 2326 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2349:16 164s | 164s 2349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2372:16 164s | 164s 2372 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2381:16 164s | 164s 2381 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2396:16 164s | 164s 2396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2405:16 164s | 164s 2405 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2414:16 164s | 164s 2414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2426:16 164s | 164s 2426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2496:16 164s | 164s 2496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2547:16 164s | 164s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2571:16 164s | 164s 2571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2582:16 164s | 164s 2582 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2594:16 164s | 164s 2594 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2648:16 164s | 164s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2678:16 164s | 164s 2678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2727:16 164s | 164s 2727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2759:16 164s | 164s 2759 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2801:16 164s | 164s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2818:16 164s | 164s 2818 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2832:16 164s | 164s 2832 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2846:16 164s | 164s 2846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2879:16 164s | 164s 2879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2292:28 164s | 164s 2292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s ... 164s 2309 | / impl_by_parsing_expr! { 164s 2310 | | ExprAssign, Assign, "expected assignment expression", 164s 2311 | | ExprAssignOp, AssignOp, "expected compound assignment expression", 164s 2312 | | ExprAwait, Await, "expected await expression", 164s ... | 164s 2322 | | ExprType, Type, "expected type ascription expression", 164s 2323 | | } 164s | |_____- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `impl_by_parsing_expr` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:1248:20 164s | 164s 1248 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "full", feature = "parsing"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2539:23 164s | 164s 2539 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2905:23 164s | 164s 2905 | #[cfg(not(syn_no_const_vec_new))] 164s | ^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2907:19 164s | 164s 2907 | #[cfg(syn_no_const_vec_new)] 164s | ^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2988:16 164s | 164s 2988 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:2998:16 164s | 164s 2998 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3008:16 164s | 164s 3008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3020:16 164s | 164s 3020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3035:16 164s | 164s 3035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3046:16 164s | 164s 3046 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3057:16 164s | 164s 3057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3072:16 164s | 164s 3072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3082:16 164s | 164s 3082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3091:16 164s | 164s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3099:16 164s | 164s 3099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3110:16 164s | 164s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3141:16 164s | 164s 3141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3153:16 164s | 164s 3153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3165:16 164s | 164s 3165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3180:16 164s | 164s 3180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3197:16 164s | 164s 3197 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3211:16 164s | 164s 3211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3233:16 164s | 164s 3233 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3244:16 164s | 164s 3244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3255:16 164s | 164s 3255 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3265:16 164s | 164s 3265 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3275:16 164s | 164s 3275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3291:16 164s | 164s 3291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3304:16 164s | 164s 3304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3317:16 164s | 164s 3317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3328:16 164s | 164s 3328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3338:16 164s | 164s 3338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3348:16 164s | 164s 3348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3358:16 164s | 164s 3358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3367:16 164s | 164s 3367 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3379:16 164s | 164s 3379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3390:16 164s | 164s 3390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3400:16 164s | 164s 3400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3409:16 164s | 164s 3409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3420:16 164s | 164s 3420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3431:16 164s | 164s 3431 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3441:16 164s | 164s 3441 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3451:16 164s | 164s 3451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3460:16 164s | 164s 3460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3478:16 164s | 164s 3478 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3491:16 164s | 164s 3491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3501:16 164s | 164s 3501 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3512:16 164s | 164s 3512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3522:16 164s | 164s 3522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3531:16 164s | 164s 3531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/expr.rs:3544:16 164s | 164s 3544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:296:5 164s | 164s 296 | doc_cfg, 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:307:5 164s | 164s 307 | doc_cfg, 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:318:5 164s | 164s 318 | doc_cfg, 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:14:16 164s | 164s 14 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:35:16 164s | 164s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:23:1 164s | 164s 23 | / ast_enum_of_structs! { 164s 24 | | /// A generic type parameter, lifetime, or const generic: `T: Into`, 164s 25 | | /// `'a: 'b`, `const LEN: usize`. 164s 26 | | /// 164s ... | 164s 45 | | } 164s 46 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:53:16 164s | 164s 53 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:69:16 164s | 164s 69 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:83:16 164s | 164s 83 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:363:20 164s | 164s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 404 | generics_wrapper_impls!(ImplGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:371:20 164s | 164s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 404 | generics_wrapper_impls!(ImplGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:382:20 164s | 164s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 404 | generics_wrapper_impls!(ImplGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:386:20 164s | 164s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 404 | generics_wrapper_impls!(ImplGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:394:20 164s | 164s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 404 | generics_wrapper_impls!(ImplGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:363:20 164s | 164s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 406 | generics_wrapper_impls!(TypeGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:371:20 164s | 164s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 406 | generics_wrapper_impls!(TypeGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:382:20 164s | 164s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 406 | generics_wrapper_impls!(TypeGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:386:20 164s | 164s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 406 | generics_wrapper_impls!(TypeGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:394:20 164s | 164s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 406 | generics_wrapper_impls!(TypeGenerics); 164s | ------------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:363:20 164s | 164s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 408 | generics_wrapper_impls!(Turbofish); 164s | ---------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:371:20 164s | 164s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 408 | generics_wrapper_impls!(Turbofish); 164s | ---------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:382:20 164s | 164s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 408 | generics_wrapper_impls!(Turbofish); 164s | ---------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:386:20 164s | 164s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 408 | generics_wrapper_impls!(Turbofish); 164s | ---------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:394:20 164s | 164s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 408 | generics_wrapper_impls!(Turbofish); 164s | ---------------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:426:16 164s | 164s 426 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:475:16 164s | 164s 475 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:470:1 164s | 164s 470 | / ast_enum_of_structs! { 164s 471 | | /// A trait or lifetime used as a bound on a type parameter. 164s 472 | | /// 164s 473 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 479 | | } 164s 480 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:487:16 164s | 164s 487 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:504:16 164s | 164s 504 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:517:16 164s | 164s 517 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:535:16 164s | 164s 535 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:524:1 164s | 164s 524 | / ast_enum_of_structs! { 164s 525 | | /// A single predicate in a `where` clause: `T: Deserialize<'de>`. 164s 526 | | /// 164s 527 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 545 | | } 164s 546 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:553:16 164s | 164s 553 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:570:16 164s | 164s 570 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:583:16 164s | 164s 583 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:347:9 164s | 164s 347 | doc_cfg, 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:597:16 164s | 164s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:660:16 164s | 164s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:687:16 164s | 164s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:725:16 164s | 164s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:747:16 164s | 164s 747 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:758:16 164s | 164s 758 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:812:16 164s | 164s 812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:856:16 164s | 164s 856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:905:16 164s | 164s 905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:916:16 164s | 164s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:940:16 164s | 164s 940 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:971:16 164s | 164s 971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:982:16 164s | 164s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1057:16 164s | 164s 1057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1207:16 164s | 164s 1207 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1217:16 164s | 164s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1229:16 164s | 164s 1229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1268:16 164s | 164s 1268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1300:16 164s | 164s 1300 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1310:16 164s | 164s 1310 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1325:16 164s | 164s 1325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1335:16 164s | 164s 1335 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1345:16 164s | 164s 1345 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/generics.rs:1354:16 164s | 164s 1354 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:19:16 164s | 164s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:20:20 164s | 164s 20 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:9:1 164s | 164s 9 | / ast_enum_of_structs! { 164s 10 | | /// Things that can appear directly inside of a module or scope. 164s 11 | | /// 164s 12 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 96 | | } 164s 97 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:103:16 164s | 164s 103 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:121:16 164s | 164s 121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:137:16 164s | 164s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:154:16 164s | 164s 154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:167:16 164s | 164s 167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:181:16 164s | 164s 181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:201:16 164s | 164s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:215:16 164s | 164s 215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:229:16 164s | 164s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:244:16 164s | 164s 244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:263:16 164s | 164s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:279:16 164s | 164s 279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:299:16 164s | 164s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:316:16 164s | 164s 316 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:333:16 164s | 164s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:348:16 164s | 164s 348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:477:16 164s | 164s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:467:1 164s | 164s 467 | / ast_enum_of_structs! { 164s 468 | | /// A suffix of an import tree in a `use` item: `Type as Renamed` or `*`. 164s 469 | | /// 164s 470 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 493 | | } 164s 494 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:500:16 164s | 164s 500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:512:16 164s | 164s 512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:522:16 164s | 164s 522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:534:16 164s | 164s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:544:16 164s | 164s 544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:561:16 164s | 164s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:562:20 164s | 164s 562 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:551:1 164s | 164s 551 | / ast_enum_of_structs! { 164s 552 | | /// An item within an `extern` block. 164s 553 | | /// 164s 554 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 600 | | } 164s 601 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:607:16 164s | 164s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:620:16 164s | 164s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:637:16 164s | 164s 637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:651:16 164s | 164s 651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:669:16 164s | 164s 669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:670:20 164s | 164s 670 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:659:1 164s | 164s 659 | / ast_enum_of_structs! { 164s 660 | | /// An item declaration within the definition of a trait. 164s 661 | | /// 164s 662 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 708 | | } 164s 709 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:715:16 164s | 164s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:731:16 164s | 164s 731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:744:16 164s | 164s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:761:16 164s | 164s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:779:16 164s | 164s 779 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:780:20 164s | 164s 780 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:769:1 164s | 164s 769 | / ast_enum_of_structs! { 164s 770 | | /// An item within an impl block. 164s 771 | | /// 164s 772 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 818 | | } 164s 819 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:825:16 164s | 164s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:844:16 164s | 164s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:858:16 164s | 164s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:876:16 164s | 164s 876 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:889:16 164s | 164s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:927:16 164s | 164s 927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:923:1 164s | 164s 923 | / ast_enum_of_structs! { 164s 924 | | /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. 164s 925 | | /// 164s 926 | | /// *This type is available only if Syn is built with the `"full"` feature.* 164s ... | 164s 938 | | } 164s 939 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:949:16 164s | 164s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:93:15 164s | 164s 93 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:381:19 164s | 164s 381 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:597:15 164s | 164s 597 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:705:15 164s | 164s 705 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:815:15 164s | 164s 815 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:976:16 164s | 164s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1237:16 164s | 164s 1237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1264:16 164s | 164s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1305:16 164s | 164s 1305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1338:16 164s | 164s 1338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1352:16 164s | 164s 1352 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1401:16 164s | 164s 1401 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1419:16 164s | 164s 1419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1500:16 164s | 164s 1500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1535:16 164s | 164s 1535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1564:16 164s | 164s 1564 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1584:16 164s | 164s 1584 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1680:16 164s | 164s 1680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1722:16 164s | 164s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1745:16 164s | 164s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1827:16 164s | 164s 1827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1843:16 164s | 164s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1859:16 164s | 164s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1903:16 164s | 164s 1903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1921:16 164s | 164s 1921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1971:16 164s | 164s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1995:16 164s | 164s 1995 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2019:16 164s | 164s 2019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2070:16 164s | 164s 2070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2144:16 164s | 164s 2144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2200:16 164s | 164s 2200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2260:16 164s | 164s 2260 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2290:16 164s | 164s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2319:16 164s | 164s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2392:16 164s | 164s 2392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2410:16 164s | 164s 2410 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2522:16 164s | 164s 2522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2603:16 164s | 164s 2603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2628:16 164s | 164s 2628 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2668:16 164s | 164s 2668 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2726:16 164s | 164s 2726 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:1817:23 164s | 164s 1817 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2251:23 164s | 164s 2251 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: `wait-timeout` (lib) generated 3 warnings (1 duplicate) 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2592:27 164s | 164s 2592 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2771:16 164s | 164s 2771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2787:16 164s | 164s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2799:16 164s | 164s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2815:16 164s | 164s 2815 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2830:16 164s | 164s 2830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2843:16 164s | 164s 2843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2861:16 164s | 164s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2873:16 164s | 164s 2873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2888:16 164s | 164s 2888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2903:16 164s | 164s 2903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2929:16 164s | 164s 2929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2942:16 164s | 164s 2942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2964:16 164s | 164s 2964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:2979:16 164s | 164s 2979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3001:16 164s | 164s 3001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3023:16 164s | 164s 3023 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3034:16 164s | 164s 3034 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3043:16 164s | 164s 3043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3050:16 164s | 164s 3050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3059:16 164s | 164s 3059 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3066:16 164s | 164s 3066 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3075:16 164s | 164s 3075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3091:16 164s | 164s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3110:16 164s | 164s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3130:16 164s | 164s 3130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3139:16 164s | 164s 3139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3155:16 164s | 164s 3155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3177:16 164s | 164s 3177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3193:16 164s | 164s 3193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3202:16 164s | 164s 3202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3212:16 164s | 164s 3212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3226:16 164s | 164s 3226 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3237:16 164s | 164s 3237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3273:16 164s | 164s 3273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/item.rs:3301:16 164s | 164s 3301 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 164s 1, 2 or 3 byte search and single substring search. 164s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.8OicaKR706/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/file.rs:80:16 164s | 164s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/file.rs:93:16 164s | 164s 93 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/file.rs:118:16 164s | 164s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lifetime.rs:127:16 164s | 164s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lifetime.rs:145:16 164s | 164s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:629:12 164s | 164s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:640:12 164s | 164s 640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:652:12 164s | 164s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:14:1 164s | 164s 14 | / ast_enum_of_structs! { 164s 15 | | /// A Rust literal such as a string or integer or boolean. 164s 16 | | /// 164s 17 | | /// # Syntax tree enum 164s ... | 164s 48 | | } 164s 49 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 703 | lit_extra_traits!(LitStr); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 703 | lit_extra_traits!(LitStr); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 703 | lit_extra_traits!(LitStr); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 704 | lit_extra_traits!(LitByteStr); 164s | ----------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 704 | lit_extra_traits!(LitByteStr); 164s | ----------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 704 | lit_extra_traits!(LitByteStr); 164s | ----------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 705 | lit_extra_traits!(LitByte); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 705 | lit_extra_traits!(LitByte); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 705 | lit_extra_traits!(LitByte); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 706 | lit_extra_traits!(LitChar); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 706 | lit_extra_traits!(LitChar); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 706 | lit_extra_traits!(LitChar); 164s | -------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 707 | lit_extra_traits!(LitInt); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | lit_extra_traits!(LitInt); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 707 | lit_extra_traits!(LitInt); 164s | ------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:666:20 164s | 164s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s ... 164s 708 | lit_extra_traits!(LitFloat); 164s | --------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:676:20 164s | 164s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 708 | lit_extra_traits!(LitFloat); 164s | --------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:684:20 164s | 164s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s ... 164s 708 | lit_extra_traits!(LitFloat); 164s | --------------------------- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:170:16 164s | 164s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:200:16 164s | 164s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:557:16 164s | 164s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:567:16 164s | 164s 567 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:577:16 164s | 164s 577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:587:16 164s | 164s 587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:597:16 164s | 164s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:607:16 164s | 164s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:617:16 164s | 164s 617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:744:16 164s | 164s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:816:16 164s | 164s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:827:16 164s | 164s 827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:838:16 164s | 164s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:849:16 164s | 164s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:860:16 164s | 164s 860 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:871:16 164s | 164s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:882:16 164s | 164s 882 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:900:16 164s | 164s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:907:16 164s | 164s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:914:16 164s | 164s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:921:16 164s | 164s 921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:928:16 164s | 164s 928 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:935:16 164s | 164s 935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:942:16 164s | 164s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_negative_literal_parse` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lit.rs:1568:15 164s | 164s 1568 | #[cfg(syn_no_negative_literal_parse)] 164s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_negative_literal_parse)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_negative_literal_parse)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:15:16 164s | 164s 15 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:29:16 164s | 164s 29 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:137:16 164s | 164s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:145:16 164s | 164s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:177:16 164s | 164s 177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/mac.rs:201:16 164s | 164s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:8:16 164s | 164s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:37:16 164s | 164s 37 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:57:16 164s | 164s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:70:16 164s | 164s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:83:16 164s | 164s 83 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:95:16 164s | 164s 95 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/derive.rs:231:16 164s | 164s 231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:6:16 164s | 164s 6 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:72:16 164s | 164s 72 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:130:16 164s | 164s 130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:165:16 164s | 164s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:188:16 164s | 164s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/op.rs:224:16 164s | 164s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:7:16 164s | 164s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:19:16 164s | 164s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:39:16 164s | 164s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:136:16 164s | 164s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:147:16 164s | 164s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:109:20 164s | 164s 109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:312:16 164s | 164s 312 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:321:16 164s | 164s 321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/stmt.rs:336:16 164s | 164s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:16:16 164s | 164s 16 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:17:20 164s | 164s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:5:1 164s | 164s 5 | / ast_enum_of_structs! { 164s 6 | | /// The possible types that a Rust value could have. 164s 7 | | /// 164s 8 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 164s ... | 164s 88 | | } 164s 89 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:96:16 164s | 164s 96 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:110:16 164s | 164s 110 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:128:16 164s | 164s 128 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:141:16 164s | 164s 141 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:153:16 164s | 164s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:164:16 164s | 164s 164 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:175:16 164s | 164s 175 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:186:16 164s | 164s 186 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:199:16 164s | 164s 199 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:211:16 164s | 164s 211 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:225:16 164s | 164s 225 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:239:16 164s | 164s 239 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:252:16 164s | 164s 252 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:264:16 164s | 164s 264 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:276:16 164s | 164s 276 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:288:16 164s | 164s 288 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:311:16 164s | 164s 311 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:323:16 164s | 164s 323 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:85:15 164s | 164s 85 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:342:16 164s | 164s 342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:656:16 164s | 164s 656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:667:16 164s | 164s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:680:16 164s | 164s 680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:703:16 164s | 164s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:716:16 164s | 164s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:777:16 164s | 164s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:786:16 164s | 164s 786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:795:16 164s | 164s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:828:16 164s | 164s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:837:16 164s | 164s 837 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:887:16 164s | 164s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:895:16 164s | 164s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:949:16 164s | 164s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:992:16 164s | 164s 992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1003:16 164s | 164s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1024:16 164s | 164s 1024 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1098:16 164s | 164s 1098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1108:16 164s | 164s 1108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:357:20 164s | 164s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:869:20 164s | 164s 869 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:904:20 164s | 164s 904 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:958:20 164s | 164s 958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1128:16 164s | 164s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1137:16 164s | 164s 1137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1148:16 164s | 164s 1148 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1162:16 164s | 164s 1162 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1172:16 164s | 164s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1193:16 164s | 164s 1193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1200:16 164s | 164s 1200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1209:16 164s | 164s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1216:16 164s | 164s 1216 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1224:16 164s | 164s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1232:16 164s | 164s 1232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1241:16 164s | 164s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1250:16 164s | 164s 1250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1257:16 164s | 164s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1264:16 164s | 164s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1277:16 164s | 164s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1289:16 164s | 164s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/ty.rs:1297:16 164s | 164s 1297 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:16:16 164s | 164s 16 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:17:20 164s | 164s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/macros.rs:155:20 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s ::: /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:5:1 164s | 164s 5 | / ast_enum_of_structs! { 164s 6 | | /// A pattern in a local binding, function signature, match expression, or 164s 7 | | /// various other places. 164s 8 | | /// 164s ... | 164s 97 | | } 164s 98 | | } 164s | |_- in this macro invocation 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:104:16 164s | 164s 104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:119:16 164s | 164s 119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:136:16 164s | 164s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:147:16 164s | 164s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:158:16 164s | 164s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:176:16 164s | 164s 176 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:188:16 164s | 164s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:201:16 164s | 164s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:214:16 164s | 164s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:225:16 164s | 164s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:237:16 164s | 164s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:251:16 164s | 164s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:263:16 164s | 164s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:275:16 164s | 164s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:288:16 164s | 164s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:302:16 164s | 164s 302 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:94:15 164s | 164s 94 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:318:16 164s | 164s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:769:16 164s | 164s 769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:777:16 164s | 164s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:791:16 164s | 164s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:807:16 164s | 164s 807 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:816:16 164s | 164s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:826:16 164s | 164s 826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:834:16 164s | 164s 834 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:844:16 164s | 164s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:853:16 164s | 164s 853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:863:16 164s | 164s 863 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:871:16 164s | 164s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:879:16 164s | 164s 879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:889:16 164s | 164s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:899:16 164s | 164s 899 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:907:16 164s | 164s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/pat.rs:916:16 164s | 164s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:9:16 164s | 164s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:35:16 164s | 164s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:67:16 164s | 164s 67 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:105:16 164s | 164s 105 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:130:16 164s | 164s 130 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:144:16 164s | 164s 144 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:157:16 164s | 164s 157 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:171:16 164s | 164s 171 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:201:16 164s | 164s 201 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:218:16 164s | 164s 218 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:225:16 164s | 164s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:358:16 164s | 164s 358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:385:16 164s | 164s 385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:397:16 164s | 164s 397 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:430:16 164s | 164s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:442:16 164s | 164s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:505:20 164s | 164s 505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:569:20 164s | 164s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:591:20 164s | 164s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:693:16 164s | 164s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:701:16 164s | 164s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:709:16 164s | 164s 709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:724:16 164s | 164s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:752:16 164s | 164s 752 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:793:16 164s | 164s 793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:802:16 164s | 164s 802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/path.rs:811:16 164s | 164s 811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:371:12 164s | 164s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:386:12 164s | 164s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:395:12 164s | 164s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:408:12 164s | 164s 408 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:422:12 164s | 164s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:1012:12 164s | 164s 1012 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:54:15 164s | 164s 54 | #[cfg(not(syn_no_const_vec_new))] 164s | ^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:63:11 164s | 164s 63 | #[cfg(syn_no_const_vec_new)] 164s | ^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:267:16 164s | 164s 267 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:288:16 164s | 164s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:325:16 164s | 164s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:346:16 164s | 164s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:1060:16 164s | 164s 1060 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/punctuated.rs:1071:16 164s | 164s 1071 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse_quote.rs:68:12 164s | 164s 68 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse_quote.rs:100:12 164s | 164s 100 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse_macro_input.rs:107:12 164s | 164s 107 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/lib.rs:579:16 164s | 164s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "visit")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:1216:15 164s | 164s 1216 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:1905:15 164s | 164s 1905 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:2071:15 164s | 164s 2071 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:2207:15 164s | 164s 2207 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:2807:15 164s | 164s 2807 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:3263:15 164s | 164s 3263 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/visit.rs:3392:15 164s | 164s 3392 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:7:12 164s | 164s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:17:12 164s | 164s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:29:12 164s | 164s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:43:12 164s | 164s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:46:12 164s | 164s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:53:12 164s | 164s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:66:12 164s | 164s 66 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:77:12 164s | 164s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:80:12 164s | 164s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:87:12 164s | 164s 87 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:98:12 164s | 164s 98 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:108:12 164s | 164s 108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:120:12 164s | 164s 120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:135:12 164s | 164s 135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:146:12 164s | 164s 146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:157:12 164s | 164s 157 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:168:12 164s | 164s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:179:12 164s | 164s 179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:189:12 164s | 164s 189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:202:12 164s | 164s 202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:282:12 164s | 164s 282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:293:12 164s | 164s 293 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:305:12 164s | 164s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:317:12 164s | 164s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:329:12 164s | 164s 329 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:341:12 164s | 164s 341 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:353:12 164s | 164s 353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:364:12 164s | 164s 364 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:375:12 164s | 164s 375 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:387:12 164s | 164s 387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:399:12 164s | 164s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:411:12 164s | 164s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:428:12 164s | 164s 428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:439:12 164s | 164s 439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:451:12 164s | 164s 451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:466:12 164s | 164s 466 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:477:12 164s | 164s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:490:12 164s | 164s 490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:502:12 164s | 164s 502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:515:12 164s | 164s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:525:12 164s | 164s 525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:537:12 164s | 164s 537 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:547:12 164s | 164s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:560:12 164s | 164s 560 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:575:12 164s | 164s 575 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:586:12 164s | 164s 586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:597:12 164s | 164s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:609:12 164s | 164s 609 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:622:12 164s | 164s 622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:635:12 164s | 164s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:646:12 164s | 164s 646 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:660:12 164s | 164s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:671:12 164s | 164s 671 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:682:12 164s | 164s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:693:12 164s | 164s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:705:12 164s | 164s 705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:716:12 164s | 164s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:727:12 164s | 164s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:740:12 164s | 164s 740 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:751:12 164s | 164s 751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:764:12 164s | 164s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:776:12 164s | 164s 776 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:788:12 164s | 164s 788 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:799:12 164s | 164s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:809:12 164s | 164s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:819:12 164s | 164s 819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:830:12 164s | 164s 830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:840:12 164s | 164s 840 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:855:12 164s | 164s 855 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:867:12 164s | 164s 867 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:878:12 164s | 164s 878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:894:12 164s | 164s 894 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:907:12 164s | 164s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:920:12 164s | 164s 920 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:930:12 164s | 164s 930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:941:12 164s | 164s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:953:12 164s | 164s 953 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:968:12 164s | 164s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:986:12 164s | 164s 986 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:997:12 164s | 164s 997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1010:12 164s | 164s 1010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1027:12 164s | 164s 1027 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1037:12 164s | 164s 1037 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1064:12 164s | 164s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1081:12 164s | 164s 1081 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1096:12 164s | 164s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1111:12 164s | 164s 1111 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1123:12 164s | 164s 1123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1135:12 164s | 164s 1135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1152:12 164s | 164s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1164:12 164s | 164s 1164 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1177:12 164s | 164s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1191:12 164s | 164s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1209:12 164s | 164s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1224:12 164s | 164s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1243:12 164s | 164s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1259:12 164s | 164s 1259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1275:12 164s | 164s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1289:12 164s | 164s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1303:12 164s | 164s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1313:12 164s | 164s 1313 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1324:12 164s | 164s 1324 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1339:12 164s | 164s 1339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1349:12 164s | 164s 1349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1362:12 164s | 164s 1362 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1374:12 164s | 164s 1374 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1385:12 164s | 164s 1385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1395:12 164s | 164s 1395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1406:12 164s | 164s 1406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1417:12 164s | 164s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1428:12 164s | 164s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1440:12 164s | 164s 1440 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1450:12 164s | 164s 1450 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1461:12 164s | 164s 1461 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1487:12 164s | 164s 1487 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1498:12 164s | 164s 1498 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1511:12 164s | 164s 1511 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1521:12 164s | 164s 1521 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1531:12 164s | 164s 1531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1542:12 164s | 164s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1553:12 164s | 164s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1565:12 164s | 164s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1577:12 164s | 164s 1577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1587:12 164s | 164s 1587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1598:12 164s | 164s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1611:12 164s | 164s 1611 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1622:12 164s | 164s 1622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1633:12 164s | 164s 1633 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1645:12 164s | 164s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1655:12 164s | 164s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1665:12 164s | 164s 1665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1678:12 164s | 164s 1678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1688:12 164s | 164s 1688 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1699:12 164s | 164s 1699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1710:12 164s | 164s 1710 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1722:12 164s | 164s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1735:12 164s | 164s 1735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1738:12 164s | 164s 1738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1745:12 164s | 164s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1757:12 164s | 164s 1757 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1767:12 164s | 164s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1786:12 164s | 164s 1786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1798:12 164s | 164s 1798 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1810:12 164s | 164s 1810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1813:12 164s | 164s 1813 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1820:12 164s | 164s 1820 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1835:12 164s | 164s 1835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1850:12 164s | 164s 1850 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1861:12 164s | 164s 1861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1873:12 164s | 164s 1873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1889:12 164s | 164s 1889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1914:12 164s | 164s 1914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1926:12 164s | 164s 1926 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1942:12 164s | 164s 1942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1952:12 164s | 164s 1952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1962:12 164s | 164s 1962 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1971:12 164s | 164s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1978:12 164s | 164s 1978 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1987:12 164s | 164s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2001:12 164s | 164s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2011:12 164s | 164s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2021:12 164s | 164s 2021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2031:12 164s | 164s 2031 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2043:12 164s | 164s 2043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2055:12 164s | 164s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2065:12 164s | 164s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2075:12 164s | 164s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2085:12 164s | 164s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2088:12 164s | 164s 2088 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2095:12 164s | 164s 2095 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2104:12 164s | 164s 2104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2114:12 164s | 164s 2114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2123:12 164s | 164s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2134:12 164s | 164s 2134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2145:12 164s | 164s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2158:12 164s | 164s 2158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2168:12 164s | 164s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2180:12 164s | 164s 2180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2189:12 164s | 164s 2189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2198:12 164s | 164s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2210:12 164s | 164s 2210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2222:12 164s | 164s 2222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:2232:12 164s | 164s 2232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:276:23 164s | 164s 276 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:849:19 164s | 164s 849 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:962:19 164s | 164s 962 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1058:19 164s | 164s 1058 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1481:19 164s | 164s 1481 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1829:19 164s | 164s 1829 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/clone.rs:1908:19 164s | 164s 1908 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:8:12 164s | 164s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:11:12 164s | 164s 11 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:18:12 164s | 164s 18 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:21:12 164s | 164s 21 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:28:12 164s | 164s 28 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:31:12 164s | 164s 31 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:39:12 164s | 164s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:42:12 164s | 164s 42 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:53:12 164s | 164s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:56:12 164s | 164s 56 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:64:12 164s | 164s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:67:12 164s | 164s 67 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:74:12 164s | 164s 74 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:77:12 164s | 164s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:114:12 164s | 164s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:117:12 164s | 164s 117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:124:12 164s | 164s 124 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:127:12 164s | 164s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:134:12 164s | 164s 134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:137:12 164s | 164s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:144:12 164s | 164s 144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:147:12 164s | 164s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:155:12 164s | 164s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:158:12 164s | 164s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:165:12 164s | 164s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:168:12 164s | 164s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:180:12 164s | 164s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:183:12 164s | 164s 183 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:190:12 164s | 164s 190 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:193:12 164s | 164s 193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:200:12 164s | 164s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:203:12 164s | 164s 203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:210:12 164s | 164s 210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:213:12 164s | 164s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:221:12 164s | 164s 221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:224:12 164s | 164s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:305:12 164s | 164s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:308:12 164s | 164s 308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:315:12 164s | 164s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:318:12 164s | 164s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:325:12 164s | 164s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:328:12 164s | 164s 328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:336:12 164s | 164s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:339:12 164s | 164s 339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:347:12 164s | 164s 347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:350:12 164s | 164s 350 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:357:12 164s | 164s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:360:12 164s | 164s 360 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:368:12 164s | 164s 368 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:371:12 164s | 164s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:379:12 164s | 164s 379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:382:12 164s | 164s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:389:12 164s | 164s 389 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:392:12 164s | 164s 392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:399:12 164s | 164s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:402:12 164s | 164s 402 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:409:12 164s | 164s 409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:412:12 164s | 164s 412 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:419:12 164s | 164s 419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:422:12 164s | 164s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:432:12 164s | 164s 432 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:435:12 164s | 164s 435 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:442:12 164s | 164s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:445:12 164s | 164s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:453:12 164s | 164s 453 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:456:12 164s | 164s 456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:464:12 164s | 164s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:467:12 164s | 164s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:474:12 164s | 164s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:477:12 164s | 164s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:486:12 164s | 164s 486 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:489:12 164s | 164s 489 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:496:12 164s | 164s 496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:499:12 164s | 164s 499 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:506:12 164s | 164s 506 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:509:12 164s | 164s 509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:516:12 164s | 164s 516 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:519:12 164s | 164s 519 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:526:12 164s | 164s 526 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:529:12 164s | 164s 529 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:536:12 164s | 164s 536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:539:12 164s | 164s 539 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:546:12 164s | 164s 546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:549:12 164s | 164s 549 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:558:12 164s | 164s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:561:12 164s | 164s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:568:12 164s | 164s 568 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:571:12 164s | 164s 571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:578:12 164s | 164s 578 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:581:12 164s | 164s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:589:12 164s | 164s 589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:592:12 164s | 164s 592 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:600:12 164s | 164s 600 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:603:12 164s | 164s 603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:610:12 164s | 164s 610 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:613:12 164s | 164s 613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:620:12 164s | 164s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:623:12 164s | 164s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:632:12 164s | 164s 632 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:635:12 164s | 164s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:642:12 164s | 164s 642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:645:12 164s | 164s 645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:652:12 164s | 164s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:655:12 164s | 164s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:662:12 164s | 164s 662 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:665:12 164s | 164s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:672:12 164s | 164s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:675:12 164s | 164s 675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:682:12 164s | 164s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:685:12 164s | 164s 685 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:692:12 164s | 164s 692 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:695:12 164s | 164s 695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:703:12 164s | 164s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:706:12 164s | 164s 706 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:713:12 164s | 164s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:716:12 164s | 164s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:724:12 164s | 164s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:727:12 164s | 164s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:735:12 164s | 164s 735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:738:12 164s | 164s 738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:746:12 164s | 164s 746 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:749:12 164s | 164s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:761:12 164s | 164s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:764:12 164s | 164s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:771:12 164s | 164s 771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:774:12 164s | 164s 774 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:781:12 164s | 164s 781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:784:12 164s | 164s 784 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:792:12 164s | 164s 792 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:795:12 164s | 164s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:806:12 164s | 164s 806 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:809:12 164s | 164s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:825:12 164s | 164s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:828:12 164s | 164s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:835:12 164s | 164s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:838:12 164s | 164s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:846:12 164s | 164s 846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:849:12 164s | 164s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:858:12 164s | 164s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:861:12 164s | 164s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:868:12 164s | 164s 868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:871:12 164s | 164s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:895:12 164s | 164s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:898:12 164s | 164s 898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:914:12 164s | 164s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:917:12 164s | 164s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:931:12 164s | 164s 931 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:934:12 164s | 164s 934 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:942:12 164s | 164s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:945:12 164s | 164s 945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:961:12 164s | 164s 961 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:964:12 164s | 164s 964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:973:12 164s | 164s 973 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:976:12 164s | 164s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:984:12 164s | 164s 984 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:987:12 164s | 164s 987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:996:12 164s | 164s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:999:12 164s | 164s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1008:12 164s | 164s 1008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1011:12 164s | 164s 1011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1039:12 164s | 164s 1039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1042:12 164s | 164s 1042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1050:12 164s | 164s 1050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1053:12 164s | 164s 1053 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1061:12 164s | 164s 1061 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1064:12 164s | 164s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1072:12 164s | 164s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1075:12 164s | 164s 1075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1083:12 164s | 164s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1086:12 164s | 164s 1086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1093:12 164s | 164s 1093 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1096:12 164s | 164s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1106:12 164s | 164s 1106 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1109:12 164s | 164s 1109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1117:12 164s | 164s 1117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1120:12 164s | 164s 1120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1128:12 164s | 164s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1131:12 164s | 164s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1139:12 164s | 164s 1139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1142:12 164s | 164s 1142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1151:12 164s | 164s 1151 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1154:12 164s | 164s 1154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1163:12 164s | 164s 1163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1166:12 164s | 164s 1166 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1177:12 164s | 164s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1180:12 164s | 164s 1180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1188:12 164s | 164s 1188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1191:12 164s | 164s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1199:12 164s | 164s 1199 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1202:12 164s | 164s 1202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1210:12 164s | 164s 1210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1213:12 164s | 164s 1213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1221:12 164s | 164s 1221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1224:12 164s | 164s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1231:12 164s | 164s 1231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1234:12 164s | 164s 1234 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1241:12 164s | 164s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1243:12 164s | 164s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1261:12 164s | 164s 1261 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1263:12 164s | 164s 1263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1269:12 164s | 164s 1269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1271:12 164s | 164s 1271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1273:12 164s | 164s 1273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1275:12 164s | 164s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1277:12 164s | 164s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1279:12 164s | 164s 1279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1282:12 164s | 164s 1282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1285:12 164s | 164s 1285 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1292:12 164s | 164s 1292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1295:12 164s | 164s 1295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1303:12 164s | 164s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1306:12 164s | 164s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1318:12 164s | 164s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1321:12 164s | 164s 1321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1333:12 164s | 164s 1333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1336:12 164s | 164s 1336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1343:12 164s | 164s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1346:12 164s | 164s 1346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1353:12 164s | 164s 1353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1356:12 164s | 164s 1356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1363:12 164s | 164s 1363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1366:12 164s | 164s 1366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1377:12 164s | 164s 1377 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1380:12 164s | 164s 1380 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1387:12 164s | 164s 1387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1390:12 164s | 164s 1390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1417:12 164s | 164s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1420:12 164s | 164s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1427:12 164s | 164s 1427 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1430:12 164s | 164s 1430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1439:12 164s | 164s 1439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1442:12 164s | 164s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1449:12 164s | 164s 1449 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1452:12 164s | 164s 1452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1459:12 164s | 164s 1459 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1462:12 164s | 164s 1462 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1470:12 164s | 164s 1470 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1473:12 164s | 164s 1473 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1480:12 164s | 164s 1480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1483:12 164s | 164s 1483 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1491:12 164s | 164s 1491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1494:12 164s | 164s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1502:12 164s | 164s 1502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1505:12 164s | 164s 1505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1512:12 164s | 164s 1512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1515:12 164s | 164s 1515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1522:12 164s | 164s 1522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1525:12 164s | 164s 1525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1533:12 164s | 164s 1533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1536:12 164s | 164s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1543:12 164s | 164s 1543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1546:12 164s | 164s 1546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1553:12 164s | 164s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1556:12 164s | 164s 1556 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1563:12 164s | 164s 1563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1566:12 164s | 164s 1566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1573:12 164s | 164s 1573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1576:12 164s | 164s 1576 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1583:12 164s | 164s 1583 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1586:12 164s | 164s 1586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1604:12 164s | 164s 1604 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1607:12 164s | 164s 1607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1614:12 164s | 164s 1614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1617:12 164s | 164s 1617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1624:12 164s | 164s 1624 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1627:12 164s | 164s 1627 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1634:12 164s | 164s 1634 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1637:12 164s | 164s 1637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1645:12 164s | 164s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1648:12 164s | 164s 1648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1656:12 164s | 164s 1656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1659:12 164s | 164s 1659 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1670:12 164s | 164s 1670 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1673:12 164s | 164s 1673 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1681:12 164s | 164s 1681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1684:12 164s | 164s 1684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1695:12 164s | 164s 1695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1698:12 164s | 164s 1698 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1709:12 164s | 164s 1709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1712:12 164s | 164s 1712 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1725:12 164s | 164s 1725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1728:12 164s | 164s 1728 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1736:12 164s | 164s 1736 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1739:12 164s | 164s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1750:12 164s | 164s 1750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1753:12 164s | 164s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1769:12 164s | 164s 1769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1772:12 164s | 164s 1772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1780:12 164s | 164s 1780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1783:12 164s | 164s 1783 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1791:12 164s | 164s 1791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1794:12 164s | 164s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1802:12 164s | 164s 1802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1805:12 164s | 164s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1814:12 164s | 164s 1814 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1817:12 164s | 164s 1817 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1843:12 164s | 164s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1846:12 164s | 164s 1846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1853:12 164s | 164s 1853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1856:12 164s | 164s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1865:12 164s | 164s 1865 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1868:12 164s | 164s 1868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1875:12 164s | 164s 1875 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1878:12 164s | 164s 1878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1885:12 164s | 164s 1885 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1888:12 164s | 164s 1888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1895:12 164s | 164s 1895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1898:12 164s | 164s 1898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1905:12 164s | 164s 1905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1908:12 164s | 164s 1908 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1915:12 164s | 164s 1915 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1918:12 164s | 164s 1918 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1927:12 164s | 164s 1927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1930:12 164s | 164s 1930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1945:12 164s | 164s 1945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1948:12 164s | 164s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1955:12 164s | 164s 1955 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1958:12 164s | 164s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1965:12 164s | 164s 1965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1968:12 164s | 164s 1968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1976:12 164s | 164s 1976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1979:12 164s | 164s 1979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1987:12 164s | 164s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1990:12 164s | 164s 1990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:1997:12 164s | 164s 1997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2000:12 164s | 164s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2007:12 164s | 164s 2007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2010:12 164s | 164s 2010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2017:12 164s | 164s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2020:12 164s | 164s 2020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2032:12 164s | 164s 2032 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2035:12 164s | 164s 2035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2042:12 164s | 164s 2042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2045:12 164s | 164s 2045 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2052:12 164s | 164s 2052 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2055:12 164s | 164s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2062:12 164s | 164s 2062 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2065:12 164s | 164s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2072:12 164s | 164s 2072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2075:12 164s | 164s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2082:12 164s | 164s 2082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2085:12 164s | 164s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2099:12 164s | 164s 2099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2102:12 164s | 164s 2102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2109:12 164s | 164s 2109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2112:12 164s | 164s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2120:12 164s | 164s 2120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2123:12 164s | 164s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2130:12 164s | 164s 2130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2133:12 164s | 164s 2133 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2140:12 164s | 164s 2140 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2143:12 164s | 164s 2143 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2150:12 164s | 164s 2150 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2153:12 164s | 164s 2153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2168:12 164s | 164s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2171:12 164s | 164s 2171 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2178:12 164s | 164s 2178 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/eq.rs:2181:12 164s | 164s 2181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:9:12 164s | 164s 9 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:19:12 164s | 164s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:30:12 164s | 164s 30 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:44:12 164s | 164s 44 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:61:12 164s | 164s 61 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:73:12 164s | 164s 73 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:85:12 164s | 164s 85 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:180:12 164s | 164s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:191:12 164s | 164s 191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:201:12 164s | 164s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:211:12 164s | 164s 211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:225:12 164s | 164s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:236:12 164s | 164s 236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:259:12 164s | 164s 259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:269:12 164s | 164s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:280:12 164s | 164s 280 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:290:12 164s | 164s 290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:304:12 164s | 164s 304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:507:12 164s | 164s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:518:12 164s | 164s 518 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:530:12 164s | 164s 530 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:543:12 164s | 164s 543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:555:12 164s | 164s 555 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:566:12 164s | 164s 566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:579:12 164s | 164s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:591:12 164s | 164s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:602:12 164s | 164s 602 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:614:12 164s | 164s 614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:626:12 164s | 164s 626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:638:12 164s | 164s 638 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:654:12 164s | 164s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:665:12 164s | 164s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:677:12 164s | 164s 677 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:691:12 164s | 164s 691 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:702:12 164s | 164s 702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:715:12 164s | 164s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:727:12 164s | 164s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:739:12 164s | 164s 739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:750:12 164s | 164s 750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:762:12 164s | 164s 762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:773:12 164s | 164s 773 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:785:12 164s | 164s 785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:799:12 164s | 164s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:810:12 164s | 164s 810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:822:12 164s | 164s 822 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:835:12 164s | 164s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:847:12 164s | 164s 847 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:859:12 164s | 164s 859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:870:12 164s | 164s 870 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:884:12 164s | 164s 884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:895:12 164s | 164s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:906:12 164s | 164s 906 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:917:12 164s | 164s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:929:12 164s | 164s 929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:941:12 164s | 164s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:952:12 164s | 164s 952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:965:12 164s | 164s 965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:976:12 164s | 164s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:990:12 164s | 164s 990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1003:12 164s | 164s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1016:12 164s | 164s 1016 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1038:12 164s | 164s 1038 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1048:12 164s | 164s 1048 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1058:12 164s | 164s 1058 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1070:12 164s | 164s 1070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1089:12 164s | 164s 1089 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1122:12 164s | 164s 1122 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1134:12 164s | 164s 1134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1146:12 164s | 164s 1146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1160:12 164s | 164s 1160 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1172:12 164s | 164s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1203:12 164s | 164s 1203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1222:12 164s | 164s 1222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1245:12 164s | 164s 1245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1258:12 164s | 164s 1258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1291:12 164s | 164s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1306:12 164s | 164s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1318:12 164s | 164s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1332:12 164s | 164s 1332 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1347:12 164s | 164s 1347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1428:12 164s | 164s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1442:12 164s | 164s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1456:12 164s | 164s 1456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1469:12 164s | 164s 1469 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1482:12 164s | 164s 1482 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1494:12 164s | 164s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1510:12 164s | 164s 1510 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1523:12 164s | 164s 1523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1536:12 164s | 164s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1550:12 164s | 164s 1550 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1565:12 164s | 164s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1580:12 164s | 164s 1580 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1598:12 164s | 164s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1612:12 164s | 164s 1612 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1626:12 164s | 164s 1626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1640:12 164s | 164s 1640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1653:12 164s | 164s 1653 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1663:12 164s | 164s 1663 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1675:12 164s | 164s 1675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1717:12 164s | 164s 1717 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1727:12 164s | 164s 1727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1739:12 164s | 164s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1751:12 164s | 164s 1751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1771:12 164s | 164s 1771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1794:12 164s | 164s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1805:12 164s | 164s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1816:12 164s | 164s 1816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1826:12 164s | 164s 1826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1845:12 164s | 164s 1845 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1856:12 164s | 164s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1933:12 164s | 164s 1933 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1944:12 164s | 164s 1944 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1958:12 164s | 164s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1969:12 164s | 164s 1969 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1980:12 164s | 164s 1980 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1992:12 164s | 164s 1992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2004:12 164s | 164s 2004 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2017:12 164s | 164s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2029:12 164s | 164s 2029 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2039:12 164s | 164s 2039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2050:12 164s | 164s 2050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2063:12 164s | 164s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2074:12 164s | 164s 2074 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2086:12 164s | 164s 2086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2098:12 164s | 164s 2098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2108:12 164s | 164s 2108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2119:12 164s | 164s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2141:12 164s | 164s 2141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2152:12 164s | 164s 2152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2163:12 164s | 164s 2163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2174:12 164s | 164s 2174 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2186:12 164s | 164s 2186 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2198:12 164s | 164s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2215:12 164s | 164s 2215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2227:12 164s | 164s 2227 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2245:12 164s | 164s 2245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2263:12 164s | 164s 2263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2290:12 164s | 164s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2303:12 164s | 164s 2303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2320:12 164s | 164s 2320 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2353:12 164s | 164s 2353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2366:12 164s | 164s 2366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2378:12 164s | 164s 2378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2391:12 164s | 164s 2391 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2406:12 164s | 164s 2406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2479:12 164s | 164s 2479 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2490:12 164s | 164s 2490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2505:12 164s | 164s 2505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2515:12 164s | 164s 2515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2525:12 164s | 164s 2525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2533:12 164s | 164s 2533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2543:12 164s | 164s 2543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2551:12 164s | 164s 2551 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2566:12 164s | 164s 2566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2585:12 164s | 164s 2585 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2595:12 164s | 164s 2595 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2606:12 164s | 164s 2606 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2618:12 164s | 164s 2618 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2630:12 164s | 164s 2630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2640:12 164s | 164s 2640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2651:12 164s | 164s 2651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2661:12 164s | 164s 2661 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2681:12 164s | 164s 2681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2689:12 164s | 164s 2689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2699:12 164s | 164s 2699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2709:12 164s | 164s 2709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2720:12 164s | 164s 2720 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2731:12 164s | 164s 2731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2762:12 164s | 164s 2762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2772:12 164s | 164s 2772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2785:12 164s | 164s 2785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2793:12 164s | 164s 2793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2801:12 164s | 164s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2812:12 164s | 164s 2812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2838:12 164s | 164s 2838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2848:12 164s | 164s 2848 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:501:23 164s | 164s 501 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1116:19 164s | 164s 1116 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1285:19 164s | 164s 1285 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1422:19 164s | 164s 1422 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:1927:19 164s | 164s 1927 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2347:19 164s | 164s 2347 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/hash.rs:2473:19 164s | 164s 2473 | #[cfg(syn_no_non_exhaustive)] 164s | ^^^^^^^^^^^^^^^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:7:12 164s | 164s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:17:12 164s | 164s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:29:12 164s | 164s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:43:12 164s | 164s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:57:12 164s | 164s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:70:12 164s | 164s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:81:12 164s | 164s 81 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:229:12 164s | 164s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:240:12 164s | 164s 240 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:250:12 164s | 164s 250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:262:12 164s | 164s 262 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:277:12 164s | 164s 277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:288:12 164s | 164s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:311:12 164s | 164s 311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:322:12 164s | 164s 322 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:333:12 164s | 164s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:343:12 164s | 164s 343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:356:12 164s | 164s 356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:596:12 164s | 164s 596 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:607:12 164s | 164s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:619:12 164s | 164s 619 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:631:12 164s | 164s 631 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:643:12 164s | 164s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:655:12 164s | 164s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:667:12 164s | 164s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:678:12 164s | 164s 678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:689:12 164s | 164s 689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:701:12 164s | 164s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:713:12 164s | 164s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:725:12 164s | 164s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:742:12 164s | 164s 742 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:753:12 164s | 164s 753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:765:12 164s | 164s 765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:780:12 164s | 164s 780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:791:12 164s | 164s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:804:12 164s | 164s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:816:12 164s | 164s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:829:12 164s | 164s 829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:839:12 164s | 164s 839 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:851:12 164s | 164s 851 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:861:12 164s | 164s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:874:12 164s | 164s 874 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:889:12 164s | 164s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:900:12 164s | 164s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:911:12 164s | 164s 911 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:923:12 164s | 164s 923 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:936:12 164s | 164s 936 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:949:12 164s | 164s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:960:12 164s | 164s 960 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:974:12 164s | 164s 974 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:985:12 164s | 164s 985 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:996:12 164s | 164s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1007:12 164s | 164s 1007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1019:12 164s | 164s 1019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 164s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 164s [lints.rust] 164s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 164s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 164s = note: see for more information about checking conditional configuration 164s 164s warning: unexpected `cfg` condition name: `doc_cfg` 164s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1030:12 164s | 164s 1030 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 164s | ^^^^^^^ 164s | 164s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1041:12 165s | 165s 1041 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1054:12 165s | 165s 1054 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1065:12 165s | 165s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1078:12 165s | 165s 1078 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1090:12 165s | 165s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1102:12 165s | 165s 1102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1121:12 165s | 165s 1121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1131:12 165s | 165s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1141:12 165s | 165s 1141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1152:12 165s | 165s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1170:12 165s | 165s 1170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1205:12 165s | 165s 1205 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1217:12 165s | 165s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1228:12 165s | 165s 1228 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1244:12 165s | 165s 1244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1257:12 165s | 165s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1290:12 165s | 165s 1290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1308:12 165s | 165s 1308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1331:12 165s | 165s 1331 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1343:12 165s | 165s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1378:12 165s | 165s 1378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1396:12 165s | 165s 1396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1407:12 165s | 165s 1407 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1420:12 165s | 165s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1437:12 165s | 165s 1437 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1447:12 165s | 165s 1447 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1542:12 165s | 165s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1559:12 165s | 165s 1559 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1574:12 165s | 165s 1574 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1589:12 165s | 165s 1589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1601:12 165s | 165s 1601 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1613:12 165s | 165s 1613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1630:12 165s | 165s 1630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1642:12 165s | 165s 1642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1655:12 165s | 165s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1669:12 165s | 165s 1669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1687:12 165s | 165s 1687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1702:12 165s | 165s 1702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1721:12 165s | 165s 1721 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1737:12 165s | 165s 1737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1753:12 165s | 165s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1767:12 165s | 165s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1781:12 165s | 165s 1781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1790:12 165s | 165s 1790 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1800:12 165s | 165s 1800 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1811:12 165s | 165s 1811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1859:12 165s | 165s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1872:12 165s | 165s 1872 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1884:12 165s | 165s 1884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1907:12 165s | 165s 1907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1925:12 165s | 165s 1925 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1948:12 165s | 165s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1959:12 165s | 165s 1959 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1970:12 165s | 165s 1970 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1982:12 165s | 165s 1982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2000:12 165s | 165s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2011:12 165s | 165s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2101:12 165s | 165s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2112:12 165s | 165s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2125:12 165s | 165s 2125 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2135:12 165s | 165s 2135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2145:12 165s | 165s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2156:12 165s | 165s 2156 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2167:12 165s | 165s 2167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2179:12 165s | 165s 2179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2191:12 165s | 165s 2191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2201:12 165s | 165s 2201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2212:12 165s | 165s 2212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2225:12 165s | 165s 2225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2236:12 165s | 165s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2247:12 165s | 165s 2247 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2259:12 165s | 165s 2259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2269:12 165s | 165s 2269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2279:12 165s | 165s 2279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2298:12 165s | 165s 2298 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2308:12 165s | 165s 2308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2319:12 165s | 165s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2330:12 165s | 165s 2330 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2342:12 165s | 165s 2342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2355:12 165s | 165s 2355 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2373:12 165s | 165s 2373 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2385:12 165s | 165s 2385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2400:12 165s | 165s 2400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2419:12 165s | 165s 2419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2448:12 165s | 165s 2448 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2460:12 165s | 165s 2460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2474:12 165s | 165s 2474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2509:12 165s | 165s 2509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2524:12 165s | 165s 2524 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2535:12 165s | 165s 2535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2547:12 165s | 165s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2563:12 165s | 165s 2563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2648:12 165s | 165s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2660:12 165s | 165s 2660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2676:12 165s | 165s 2676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2686:12 165s | 165s 2686 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2696:12 165s | 165s 2696 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2705:12 165s | 165s 2705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2714:12 165s | 165s 2714 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2723:12 165s | 165s 2723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2737:12 165s | 165s 2737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2755:12 165s | 165s 2755 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2765:12 165s | 165s 2765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2775:12 165s | 165s 2775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2787:12 165s | 165s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2799:12 165s | 165s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2809:12 165s | 165s 2809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2819:12 165s | 165s 2819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2829:12 165s | 165s 2829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2852:12 165s | 165s 2852 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2861:12 165s | 165s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2871:12 165s | 165s 2871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2880:12 165s | 165s 2880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2891:12 165s | 165s 2891 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2902:12 165s | 165s 2902 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2935:12 165s | 165s 2935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2945:12 165s | 165s 2945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2957:12 165s | 165s 2957 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2966:12 165s | 165s 2966 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2975:12 165s | 165s 2975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2987:12 165s | 165s 2987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:3011:12 165s | 165s 3011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:3021:12 165s | 165s 3021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:590:23 165s | 165s 590 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1199:19 165s | 165s 1199 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1372:19 165s | 165s 1372 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:1536:19 165s | 165s 1536 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2095:19 165s | 165s 2095 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2503:19 165s | 165s 2503 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/gen/debug.rs:2642:19 165s | 165s 2642 | #[cfg(syn_no_non_exhaustive)] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1065:12 165s | 165s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1072:12 165s | 165s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1083:12 165s | 165s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1090:12 165s | 165s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1100:12 165s | 165s 1100 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1116:12 165s | 165s 1116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1126:12 165s | 165s 1126 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1291:12 165s | 165s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1299:12 165s | 165s 1299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1303:12 165s | 165s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/parse.rs:1311:12 165s | 165s 1311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/reserved.rs:29:12 165s | 165s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `doc_cfg` 165s --> /tmp/tmp.8OicaKR706/registry/syn-1.0.109/src/reserved.rs:39:12 165s | 165s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: `memchr` (lib) generated 1 warning (1 duplicate) 165s Compiling bit-vec v0.8.0 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/bit-vec-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/bit-vec-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.8OicaKR706/registry/bit-vec-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=f5a472a8e3d383f4 -C extra-filename=-f5a472a8e3d383f4 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: unexpected `cfg` condition value: `borsh` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:102:7 165s | 165s 102 | #[cfg(feature = "borsh")] 165s | ^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `borsh` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s = note: `#[warn(unexpected_cfgs)]` on by default 165s 165s warning: unexpected `cfg` condition value: `miniserde` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:104:7 165s | 165s 104 | #[cfg(feature = "miniserde")] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `miniserde` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition value: `nanoserde` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:106:7 165s | 165s 106 | #[cfg(feature = "nanoserde")] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition value: `nanoserde` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:108:7 165s | 165s 108 | #[cfg(feature = "nanoserde")] 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition value: `borsh` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:238:5 165s | 165s 238 | feature = "borsh", 165s | ^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `borsh` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition value: `miniserde` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:242:5 165s | 165s 242 | feature = "miniserde", 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `miniserde` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition value: `nanoserde` 165s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:246:5 165s | 165s 246 | feature = "nanoserde", 165s | ^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 165s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s 165s warning: `bit-vec` (lib) generated 8 warnings (1 duplicate) 165s Compiling fixedbitset v0.4.2 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.8OicaKR706/registry/fixedbitset-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=4f27d8f507162a0c -C extra-filename=-4f27d8f507162a0c --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `fixedbitset` (lib) generated 1 warning (1 duplicate) 165s Compiling thiserror v1.0.69 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.8OicaKR706/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.8OicaKR706/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --cap-lints warn` 165s Compiling quick-error v2.0.1 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets :Colin Kiegel ' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write. 165s ' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/quick-error' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-error CARGO_PKG_README='' CARGO_PKG_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name quick_error --edition=2018 /tmp/tmp.8OicaKR706/registry/quick-error-2.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=78f4ccd4ae208433 -C extra-filename=-78f4ccd4ae208433 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `quick-error` (lib) generated 1 warning (1 duplicate) 165s Compiling minimal-lexical v0.2.1 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.8OicaKR706/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=061c55d7bafd6059 -C extra-filename=-061c55d7bafd6059 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: `minimal-lexical` (lib) generated 1 warning (1 duplicate) 165s Compiling nom v7.1.3 165s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.8OicaKR706/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=40d655e2fb328781 -C extra-filename=-40d655e2fb328781 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern memchr=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern minimal_lexical=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libminimal_lexical-061c55d7bafd6059.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 165s warning: unexpected `cfg` condition value: `cargo-clippy` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:375:13 165s | 165s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 165s | ^^^^^^^^^^^^^^^^^^^^^^^^ 165s | 165s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 165s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 165s = note: see for more information about checking conditional configuration 165s = note: `#[warn(unexpected_cfgs)]` on by default 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:379:12 165s | 165s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:391:12 165s | 165s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:418:14 165s | 165s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unused import: `self::str::*` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:439:9 165s | 165s 439 | pub use self::str::*; 165s | ^^^^^^^^^^^^ 165s | 165s = note: `#[warn(unused_imports)]` on by default 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:49:12 165s | 165s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:96:12 165s | 165s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:340:12 165s | 165s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:357:12 165s | 165s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:374:12 165s | 165s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:392:12 165s | 165s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:409:12 165s | 165s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 165s warning: unexpected `cfg` condition name: `nightly` 165s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:430:12 165s | 165s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 165s | ^^^^^^^ 165s | 165s = help: consider using a Cargo feature instead 165s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 165s [lints.rust] 165s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 165s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 165s = note: see for more information about checking conditional configuration 165s 167s warning: `nom` (lib) generated 14 warnings (1 duplicate) 167s Compiling rusty-fork v0.3.0 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rusty_fork CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rusty-fork-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rusty-fork-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Cross-platform library for running Rust tests in sub-processes using a 167s fork-like interface. 167s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty-fork CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/altsysrq/rusty-fork' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name rusty_fork --edition=2018 /tmp/tmp.8OicaKR706/registry/rusty-fork-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="timeout"' --cfg 'feature="wait-timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "timeout", "wait-timeout"))' -C metadata=50649851fa84c472 -C extra-filename=-50649851fa84c472 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern fnv=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern quick_error=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libquick_error-78f4ccd4ae208433.rmeta --extern tempfile=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern wait_timeout=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwait_timeout-c8041ffbea216b96.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s warning: `rusty-fork` (lib) generated 1 warning (1 duplicate) 167s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 167s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 167s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 167s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 167s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 167s Compiling petgraph v0.6.4 167s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.8OicaKR706/registry/petgraph-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="graphmap"' --cfg 'feature="matrix_graph"' --cfg 'feature="stable_graph"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=11faea72e600ec28 -C extra-filename=-11faea72e600ec28 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern fixedbitset=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libfixedbitset-4f27d8f507162a0c.rmeta --extern indexmap=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 167s warning: unexpected `cfg` condition value: `quickcheck` 167s --> /usr/share/cargo/registry/petgraph-0.6.4/src/lib.rs:149:7 167s | 167s 149 | #[cfg(feature = "quickcheck")] 167s | ^^^^^^^^^^^^^^^^^^^^^^ 167s | 167s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 167s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 167s = note: see for more information about checking conditional configuration 167s = note: `#[warn(unexpected_cfgs)]` on by default 167s 168s warning: use of deprecated method `indexmap::IndexMap::::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior. 168s --> /usr/share/cargo/registry/petgraph-0.6.4/src/graphmap.rs:370:33 168s | 168s 370 | let weight = self.edges.remove(&Self::edge_key(a, b)); 168s | ^^^^^^ 168s | 168s = note: `#[warn(deprecated)]` on by default 168s 168s warning: method `node_bound_with_dummy` is never used 168s --> /usr/share/cargo/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 168s | 168s 106 | trait WithDummy: NodeIndexable { 168s | --------- method in this trait 168s 107 | fn dummy_idx(&self) -> usize; 168s 108 | fn node_bound_with_dummy(&self) -> usize; 168s | ^^^^^^^^^^^^^^^^^^^^^ 168s | 168s = note: `#[warn(dead_code)]` on by default 168s 168s warning: field `first_error` is never read 168s --> /usr/share/cargo/registry/petgraph-0.6.4/src/csr.rs:134:5 168s | 168s 133 | pub struct EdgesNotSorted { 168s | -------------- field in this struct 168s 134 | first_error: (usize, usize), 168s | ^^^^^^^^^^^ 168s | 168s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 168s 168s warning: `petgraph` (lib) generated 5 warnings (1 duplicate) 168s Compiling bit-set v0.8.0 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/bit-set-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/bit-set-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.8OicaKR706/registry/bit-set-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=89b3c1c57b5a03ce -C extra-filename=-89b3c1c57b5a03ce --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bit_vec=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 168s warning: `bit-set` (lib) generated 1 warning (1 duplicate) 168s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.8OicaKR706/registry/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=0a13ea327a69f660 -C extra-filename=-0a13ea327a69f660 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 168s warning: unexpected `cfg` condition name: `has_total_cmp` 168s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 169s | 169s 2305 | #[cfg(has_total_cmp)] 169s | ^^^^^^^^^^^^^ 169s ... 169s 2325 | totalorder_impl!(f64, i64, u64, 64); 169s | ----------------------------------- in this macro invocation 169s | 169s = 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` 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: `#[warn(unexpected_cfgs)]` on by default 169s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: unexpected `cfg` condition name: `has_total_cmp` 169s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 169s | 169s 2311 | #[cfg(not(has_total_cmp))] 169s | ^^^^^^^^^^^^^ 169s ... 169s 2325 | totalorder_impl!(f64, i64, u64, 64); 169s | ----------------------------------- in this macro invocation 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: unexpected `cfg` condition name: `has_total_cmp` 169s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 169s | 169s 2305 | #[cfg(has_total_cmp)] 169s | ^^^^^^^^^^^^^ 169s ... 169s 2326 | totalorder_impl!(f32, i32, u32, 32); 169s | ----------------------------------- in this macro invocation 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: unexpected `cfg` condition name: `has_total_cmp` 169s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 169s | 169s 2311 | #[cfg(not(has_total_cmp))] 169s | ^^^^^^^^^^^^^ 169s ... 169s 2326 | totalorder_impl!(f32, i32, u32, 32); 169s | ----------------------------------- in this macro invocation 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 169s Compiling rand v0.8.5 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 169s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.8OicaKR706/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=ef125e0fa8f0a0b9 -C extra-filename=-ef125e0fa8f0a0b9 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_core=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 169s | 169s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s = note: `#[warn(unexpected_cfgs)]` on by default 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 169s | 169s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 169s | ^^^^^^^ 169s | 169s = 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` 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 169s | 169s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `features` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 169s | 169s 162 | #[cfg(features = "nightly")] 169s | ^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: see for more information about checking conditional configuration 169s help: there is a config with a similar name and value 169s | 169s 162 | #[cfg(feature = "nightly")] 169s | ~~~~~~~ 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 169s | 169s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 169s | 169s 156 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 169s | 169s 158 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 169s | 169s 160 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 169s | 169s 162 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 169s | 169s 165 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 169s | 169s 167 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 169s | 169s 169 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 169s | 169s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 169s | 169s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 169s | 169s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 169s | 169s 112 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 169s | 169s 142 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 169s | 169s 144 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 169s | 169s 146 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 169s | 169s 148 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 169s | 169s 150 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 169s | 169s 152 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 169s | 169s 155 | feature = "simd_support", 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 169s | 169s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 169s | 169s 144 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `std` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 169s | 169s 235 | #[cfg(not(std))] 169s | ^^^ help: found config with similar value: `feature = "std"` 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 169s | 169s 363 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 169s | 169s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 169s | 169s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 169s | 169s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 169s | 169s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 169s | 169s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 169s | 169s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 169s | 169s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 169s | ^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `std` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 169s | 169s 291 | #[cfg(not(std))] 169s | ^^^ help: found config with similar value: `feature = "std"` 169s ... 169s 359 | scalar_float_impl!(f32, u32); 169s | ---------------------------- in this macro invocation 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: unexpected `cfg` condition name: `std` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 169s | 169s 291 | #[cfg(not(std))] 169s | ^^^ help: found config with similar value: `feature = "std"` 169s ... 169s 360 | scalar_float_impl!(f64, u64); 169s | ---------------------------- in this macro invocation 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 169s | 169s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 169s | 169s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 169s | 169s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 169s | 169s 572 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 169s | 169s 679 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 169s | 169s 687 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 169s | 169s 696 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 169s | 169s 706 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 169s | 169s 1001 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 169s | 169s 1003 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 169s | 169s 1005 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 169s | 169s 1007 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 169s | 169s 1010 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 169s | 169s 1012 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition value: `simd_support` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 169s | 169s 1014 | #[cfg(feature = "simd_support")] 169s | ^^^^^^^^^^^^^^^^^^^^^^^^ 169s | 169s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 169s = help: consider adding `simd_support` as a feature in `Cargo.toml` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 169s | 169s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 169s | 169s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 169s | 169s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 169s | 169s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 169s | 169s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 169s | 169s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 169s | 169s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 169s | 169s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 169s | 169s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 169s | 169s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: unexpected `cfg` condition name: `doc_cfg` 169s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 169s | 169s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 169s | ^^^^^^^ 169s | 169s = help: consider using a Cargo feature instead 169s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 169s [lints.rust] 169s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 169s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 169s = note: see for more information about checking conditional configuration 169s 169s warning: `syn` (lib) generated 1851 warnings (270 duplicates) 169s Compiling wayland-protocols v0.31.2 169s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-protocols-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-protocols-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the officials wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wayland_protocols --edition=2021 /tmp/tmp.8OicaKR706/registry/wayland-protocols-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "staging", "unstable", "wayland-client", "wayland-server"))' -C metadata=bc287ed77051523c -C extra-filename=-bc287ed77051523c --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_client=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rmeta --extern wayland_scanner=/tmp/tmp.8OicaKR706/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 169s warning: trait `Float` is never used 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 169s | 169s 238 | pub(crate) trait Float: Sized { 169s | ^^^^^ 169s | 169s = note: `#[warn(dead_code)]` on by default 169s 169s warning: associated items `lanes`, `extract`, and `replace` are never used 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 169s | 169s 245 | pub(crate) trait FloatAsSIMD: Sized { 169s | ----------- associated items in this trait 169s 246 | #[inline(always)] 169s 247 | fn lanes() -> usize { 169s | ^^^^^ 169s ... 169s 255 | fn extract(self, index: usize) -> Self { 169s | ^^^^^^^ 169s ... 169s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 169s | ^^^^^^^ 169s 169s warning: method `all` is never used 169s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 169s | 169s 266 | pub(crate) trait BoolAsSIMD: Sized { 169s | ---------- method in this trait 169s 267 | fn any(self) -> bool; 169s 268 | fn all(self) -> bool; 169s | ^^^ 169s 170s warning: `rand` (lib) generated 66 warnings (1 duplicate) 170s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_PROCESS=1 CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/debug/deps:/tmp/tmp.8OicaKR706/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.8OicaKR706/target/debug/build/nix-18c9c6ab59c87315/build-script-build` 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 170s [nix 0.29.0] cargo:rustc-cfg=linux 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 170s [nix 0.29.0] cargo:rustc-cfg=linux_android 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 170s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 170s Compiling rand_xorshift v0.3.0 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/rand_xorshift-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/rand_xorshift-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator 170s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rngs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name rand_xorshift --edition=2018 /tmp/tmp.8OicaKR706/registry/rand_xorshift-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "serde1"))' -C metadata=6f9a9169531a5b9a -C extra-filename=-6f9a9169531a5b9a --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern rand_core=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 170s warning: `rand_xorshift` (lib) generated 1 warning (1 duplicate) 170s Compiling thiserror-impl v1.0.69 170s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.8OicaKR706/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.8OicaKR706/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 171s warning: `wayland-protocols` (lib) generated 1 warning (1 duplicate) 171s Compiling unarray v0.1.4 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unarray CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/unarray-0.1.4 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/unarray-0.1.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for working with uninitialized arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unarray CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cameron1024/unarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name unarray --edition=2018 /tmp/tmp.8OicaKR706/registry/unarray-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4bc01abf17def2c3 -C extra-filename=-4bc01abf17def2c3 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s warning: `unarray` (lib) generated 1 warning (1 duplicate) 171s Compiling lazy_static v1.5.0 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.8OicaKR706/registry/lazy_static-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s warning: elided lifetime has a name 171s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 171s | 171s 26 | pub fn get(&'static self, f: F) -> &T 171s | ^ this elided lifetime gets resolved as `'static` 171s | 171s = note: `#[warn(elided_named_lifetimes)]` on by default 171s help: consider specifying it explicitly 171s | 171s 26 | pub fn get(&'static self, f: F) -> &'static T 171s | +++++++ 171s 171s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 171s Compiling regex-syntax v0.8.5 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.8OicaKR706/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.8OicaKR706/registry/thiserror-1.0.69/src/lib.rs --error-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=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern thiserror_impl=/tmp/tmp.8OicaKR706/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 171s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 171s Compiling wayland-protocols-wlr v0.2.0 171s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols_wlr CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/wayland-protocols-wlr-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/wayland-protocols-wlr-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the WLR wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols-wlr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wayland_protocols_wlr --edition=2018 /tmp/tmp.8OicaKR706/registry/wayland-protocols-wlr-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "wayland-client", "wayland-server"))' -C metadata=98900a7b8b7a3e83 -C extra-filename=-98900a7b8b7a3e83 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_client=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rmeta --extern wayland_protocols=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-bc287ed77051523c.rmeta --extern wayland_scanner=/tmp/tmp.8OicaKR706/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 174s warning: `wayland-protocols-wlr` (lib) generated 1 warning (1 duplicate) 174s Compiling proptest v1.6.0 174s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/proptest-1.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/proptest-1.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Hypothesis-like property-based testing and shrinking. 174s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.6.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name proptest --edition=2018 /tmp/tmp.8OicaKR706/registry/proptest-1.6.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="bit-set"' --cfg 'feature="default"' --cfg 'feature="fork"' --cfg 'feature="lazy_static"' --cfg 'feature="regex-syntax"' --cfg 'feature="rusty-fork"' --cfg 'feature="std"' --cfg 'feature="tempfile"' --cfg 'feature="timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic64bit", "bit-set", "default", "default-code-coverage", "fork", "handle-panics", "lazy_static", "no_std", "regex-syntax", "rusty-fork", "std", "tempfile", "timeout", "unstable"))' -C metadata=4bfa1843376ba424 -C extra-filename=-4bfa1843376ba424 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bit_set=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbit_set-89b3c1c57b5a03ce.rmeta --extern bit_vec=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern lazy_static=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern num_traits=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-0a13ea327a69f660.rmeta --extern rand=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand-ef125e0fa8f0a0b9.rmeta --extern rand_chacha=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_xorshift=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librand_xorshift-6f9a9169531a5b9a.rmeta --extern regex_syntax=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --extern rusty_fork=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/librusty_fork-50649851fa84c472.rmeta --extern tempfile=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern unarray=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libunarray-4bc01abf17def2c3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 174s warning: unexpected `cfg` condition value: `attr-macro` 174s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:91:7 174s | 174s 91 | #[cfg(feature = "attr-macro")] 174s | ^^^^^^^^^^^^^^^^^^^^^^ 174s | 174s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 174s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 174s = note: see for more information about checking conditional configuration 174s = note: `#[warn(unexpected_cfgs)]` on by default 174s 174s warning: unexpected `cfg` condition value: `attr-macro` 174s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:94:7 174s | 174s 94 | #[cfg(feature = "attr-macro")] 174s | ^^^^^^^^^^^^^^^^^^^^^^ 174s | 174s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 174s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 174s = note: see for more information about checking conditional configuration 174s 174s warning: unexpected `cfg` condition value: `hardware-rng` 174s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:487:9 174s | 174s 487 | feature = "hardware-rng" 174s | ^^^^^^^^^^^^^^^^^^^^^^^^ 174s | 174s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 174s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 174s = note: see for more information about checking conditional configuration 174s 174s warning: unexpected `cfg` condition value: `hardware-rng` 174s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:456:13 174s | 174s 456 | feature = "hardware-rng" 174s | ^^^^^^^^^^^^^^^^^^^^^^^^ 174s | 174s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 174s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 174s = note: see for more information about checking conditional configuration 174s 174s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 174s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps OUT_DIR=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out rustc --crate-name nix --edition=2021 /tmp/tmp.8OicaKR706/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=0930f78ed5a2e234 -C extra-filename=-0930f78ed5a2e234 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern bitflags=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 176s warning: struct `NoopFailurePersistence` is never constructed 176s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/failure_persistence/noop.rs:19:8 176s | 176s 19 | struct NoopFailurePersistence; 176s | ^^^^^^^^^^^^^^^^^^^^^^ 176s | 176s = note: `NoopFailurePersistence` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis 176s = note: `#[warn(dead_code)]` on by default 176s 176s warning: `nix` (lib) generated 1 warning (1 duplicate) 176s Compiling derive-new v0.5.8 176s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=derive_new CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/derive-new-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/derive-new-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Nick Cameron ' CARGO_PKG_DESCRIPTION='`#[derive(new)]` implements simple constructor functions for structs and enums.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=derive-new CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nrc/derive-new' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name derive_new --edition=2015 /tmp/tmp.8OicaKR706/registry/derive-new-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d36da1d6c0ebb951 -C extra-filename=-d36da1d6c0ebb951 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.8OicaKR706/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 177s Compiling proptest-derive v0.4.0 177s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest_derive CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/proptest-derive-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/proptest-derive-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Mazdak Farrokhzad ' CARGO_PKG_DESCRIPTION='Custom-derive for the Arbitrary trait of proptest. 177s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest-derive/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest-derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name proptest_derive --edition=2018 /tmp/tmp.8OicaKR706/registry/proptest-derive-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6474c4970bc8d659 -C extra-filename=-6474c4970bc8d659 --out-dir /tmp/tmp.8OicaKR706/target/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern proc_macro2=/tmp/tmp.8OicaKR706/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.8OicaKR706/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.8OicaKR706/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 178s warning: `proptest` (lib) generated 6 warnings (1 duplicate) 178s Compiling tree_magic_mini v3.1.6 178s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tree_magic_mini CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/tree_magic_mini-3.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/tree_magic_mini-3.1.6/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Allison Hancock ' CARGO_PKG_DESCRIPTION='Determines the MIME type of a file by traversing a filetype tree.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tree_magic_mini CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/tree_magic/' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.1.6 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name tree_magic_mini --edition=2021 /tmp/tmp.8OicaKR706/registry/tree_magic_mini-3.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("with-gpl-data"))' -C metadata=242d3fc89e043ebe -C extra-filename=-242d3fc89e043ebe --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern fnv=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern memchr=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern nom=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libnom-40d655e2fb328781.rmeta --extern once_cell=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern petgraph=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libpetgraph-11faea72e600ec28.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s Compiling os_pipe v1.2.1 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/os_pipe-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/os_pipe-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Jack O'\''Connor' CARGO_PKG_DESCRIPTION='a cross-platform library for opening OS pipes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=os_pipe CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name os_pipe --edition=2021 /tmp/tmp.8OicaKR706/registry/os_pipe-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="io_safety"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("io_safety"))' -C metadata=3c879989e1f7b2c1 -C extra-filename=-3c879989e1f7b2c1 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s warning: `os_pipe` (lib) generated 1 warning (1 duplicate) 179s Compiling log v0.4.22 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.8OicaKR706/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.8OicaKR706/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 179s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.8OicaKR706/registry/log-0.4.22/src/lib.rs --error-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("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s warning: `log` (lib) generated 1 warning (1 duplicate) 179s warning: `tree_magic_mini` (lib) generated 1 warning (1 duplicate) 179s Compiling wl-clipboard-rs v0.8.0 (/usr/share/cargo/registry/wl-clipboard-rs-0.8.0) 179s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wl_clipboard_rs CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.8OicaKR706/target/debug/deps rustc --crate-name wl_clipboard_rs --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("dlopen", "native_lib"))' -C metadata=d96c6d28dc3dbd3b -C extra-filename=-d96c6d28dc3dbd3b --out-dir /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.8OicaKR706/target/debug/deps --extern derive_new=/tmp/tmp.8OicaKR706/target/debug/deps/libderive_new-d36da1d6c0ebb951.so --extern libc=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rlib --extern log=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern nix=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libnix-0930f78ed5a2e234.rlib --extern os_pipe=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libos_pipe-3c879989e1f7b2c1.rlib --extern proptest=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libproptest-4bfa1843376ba424.rlib --extern proptest_derive=/tmp/tmp.8OicaKR706/target/debug/deps/libproptest_derive-6474c4970bc8d659.so --extern tempfile=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rlib --extern thiserror=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib --extern tree_magic_mini=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libtree_magic_mini-242d3fc89e043ebe.rlib --extern wayland_backend=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rlib --extern wayland_client=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rlib --extern wayland_protocols=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-bc287ed77051523c.rlib --extern wayland_protocols_wlr=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols_wlr-98900a7b8b7a3e83.rlib --extern wayland_server=/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.8OicaKR706/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 179s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 179s --> src/tests/mod.rs:9:5 179s | 179s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 179s | ^^^^^^^^^^^^^ 179s | 179s = note: `#[warn(deprecated)]` on by default 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 179s --> src/tests/mod.rs:9:20 179s | 179s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 179s | ^^^^^^^^^ 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 179s --> src/tests/mod.rs:9:31 179s | 179s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 179s | ^^^^^^^^^^ 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 179s --> src/tests/mod.rs:43:23 179s | 179s 43 | let poll_fd = epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap(); 179s | ^^^^^^^^^^^^^ 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 179s --> src/tests/mod.rs:47:9 179s | 179s 47 | epoll_ctl( 179s | ^^^^^^^^^ 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 179s --> src/tests/mod.rs:55:9 179s | 179s 55 | epoll_ctl( 179s | ^^^^^^^^^ 179s 179s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 179s --> src/tests/mod.rs:92:27 179s | 179s 92 | let nevents = epoll_wait(self.poll_fd.as_raw_fd(), &mut events, -1).unwrap(); 179s | ^^^^^^^^^^ 179s 179s warning: this function depends on never type fallback being `()` 179s --> src/copy.rs:554:5 179s | 179s 554 | pub fn serve(mut self) -> Result<(), Error> { 179s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 179s | 179s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in Rust 2024 and in a future release in all editions! 179s = note: for more information, see issue #123748 179s = help: specify the types explicitly 179s note: in edition 2024, the requirement `!: FromIterator<()>` will fail 179s --> src/copy.rs:591:36 179s | 179s 591 | let result: Result<_, _> = results.into_iter().collect(); 179s | ^^^^^^^^^^^^^^^^^^^ 179s = note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default 179s help: use `()` annotations to avoid fallback changes 179s | 179s 591 | let result: Result<(), _> = results.into_iter().collect(); 179s | ~~ 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/tests/state.rs:37:24 179s | 179s 37 | #[derive(Debug, Clone, Arbitrary)] 179s | ^-------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_OfferInfo` 179s 38 | pub enum OfferInfo { 179s | --------- `OfferInfo` is not local 179s | 179s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: `#[warn(non_local_definitions)]` on by default 179s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/tests/state.rs:73:33 179s | 179s 73 | #[derive(Debug, Clone, Default, Arbitrary)] 179s | ^-------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_SeatInfo` 179s 74 | pub struct SeatInfo { 179s | -------- `SeatInfo` is not local 179s | 179s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/tests/state.rs:79:33 179s | 179s 79 | #[derive(Debug, Clone, Default, Arbitrary)] 179s | ^-------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_State` 179s 80 | pub struct State { 179s | ----- `State` is not local 179s | 179s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/copy.rs:36:25 179s | 179s 36 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 179s | ^------------------------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 179s 37 | pub enum ClipboardType { 179s | ------------- `ClipboardType` is not local 179s | 179s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/copy.rs:55:25 179s | 179s 55 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 179s | ^------------------------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_MimeType` 179s 56 | pub enum MimeType { 179s | -------- `MimeType` is not local 179s | 179s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 179s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 179s --> src/copy.rs:68:25 179s | 179s 68 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 179s | ^------------------------- 179s | | 179s | `Arbitrary` is not local 179s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_Source` 179s 69 | pub enum Source { 179s | ------ `Source` is not local 179s | 179s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 179s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 179s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 179s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 179s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 179s 180s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 180s --> src/paste.rs:28:25 180s | 180s 28 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 180s | ^------------------------- 180s | | 180s | `Arbitrary` is not local 180s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 180s 29 | pub enum ClipboardType { 180s | ------------- `ClipboardType` is not local 180s | 180s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 180s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 180s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 180s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 180s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 180s 183s warning: `wl-clipboard-rs` (lib test) generated 16 warnings (1 duplicate) (run `cargo fix --lib -p wl-clipboard-rs --tests` to apply 1 suggestion) 183s Finished `test` profile [unoptimized + debuginfo] target(s) in 33.98s 183s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.8OicaKR706/target/s390x-unknown-linux-gnu/debug/deps/wl_clipboard_rs-d96c6d28dc3dbd3b` 183s 183s running 23 tests 183s test tests::copy::clear_test ... ok 183s test tests::copy::copy_large ... ok 183s test tests::copy::copy_multi_no_additional_text_mime_types_test ... ok 183s test tests::copy::copy_multi_test ... ok 183s test tests::copy::copy_test ... ok 184s test tests::paste::get_contents_randomized ... ok 184s test tests::paste::get_contents_test ... ok 184s test tests::paste::get_contents_wrong_mime_type ... ok 184s test tests::paste::get_mime_types_empty_clipboard ... ok 184s test tests::paste::get_mime_types_no_data_control ... ok 184s test tests::paste::get_mime_types_no_data_control_2 ... ok 184s test tests::paste::get_mime_types_no_seats ... ok 184s test tests::paste::get_mime_types_primary ... ok 185s test tests::paste::get_mime_types_randomized ... ok 185s test tests::paste::get_mime_types_specific_seat ... ok 185s test tests::paste::get_mime_types_test ... ok 185s test tests::utils::is_primary_selection_supported_data_control_v1 ... ok 185s test tests::utils::is_primary_selection_supported_no_data_control ... ok 185s test tests::utils::is_primary_selection_supported_no_seats ... ok 185s test tests::utils::is_primary_selection_supported_primary_selection_unsupported ... ok 185s test tests::utils::is_primary_selection_supported_test ... ok 185s test tests::utils::supports_v2_seats ... ok 185s test tests::copy::copy_randomized ... ok 185s 185s test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.61s 185s 185s /tmp/autopkgtest.4cJX46/wrapper.sh: checking for leaked background processes... 185s /tmp/autopkgtest.4cJX46/wrapper.sh: waiting for tee/cat subprocesses... 185s /tmp/autopkgtest.4cJX46/wrapper.sh: cleaning up... 185s /tmp/autopkgtest.4cJX46/wrapper.sh: Exit status: 0 185s autopkgtest: DBG: testbed command exited with code 0 185s autopkgtest [07:34:33]: test librust-wl-clipboard-rs-dev:default: -----------------------] 185s autopkgtest: DBG: testbed executing test finished with exit status 0 185s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adefault-stdout /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adefault-stdout 186s autopkgtest: DBG: got reply from testbed: ok 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adefault-stderr /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adefault-stderr 186s autopkgtest: DBG: got reply from testbed: ok 186s librust-wl-clipboard-rs-dev:default PASS 186s autopkgtest [07:34:34]: test librust-wl-clipboard-rs-dev:default: - - - - - - - - - - results - - - - - - - - - - 186s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adefault-artifacts/ /tmp/autopkgtest-work.oh9g3vy4/out/artifacts/ 187s autopkgtest: DBG: got reply from testbed: ok 187s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:default-artifacts', '/tmp/autopkgtest.4cJX46/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest [07:34:35]: test librust-wl-clipboard-rs-dev:dlopen: preparing testbed 187s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'], deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 187s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 187s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 187s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev 187s autopkgtest: DBG: can use apt-get on testbed: True 187s 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-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 187s Reading package lists... 187s Building dependency tree... 187s Reading state information... 187s Starting pkgProblemResolver with broken count: 0 187s Starting 2 pkgProblemResolver with broken count: 0 187s Done 187s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 187s autopkgtest: DBG: testbed command exited with code 0 187s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wl-clipboard-rs-dev'], kind short, sout pipe, serr pipe, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-packages.all"], kind short, sout raw, serr pipe, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adlopen-packages.all /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adlopen-packages.all 188s autopkgtest: DBG: got reply from testbed: ok 188s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4cJX46/build.9ba/src'], kind short, sout raw, serr raw, env [] 188s autopkgtest: DBG: testbed command exited with code 0 188s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4cJX46/build.9ba/src already exists 188s autopkgtest [07:34:36]: test librust-wl-clipboard-rs-dev:dlopen: /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features dlopen 188s autopkgtest [07:34:36]: test librust-wl-clipboard-rs-dev:dlopen: [----------------------- 188s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4cJX46/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-artifacts --chdir=/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stderr --stdout=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stdout --tmp=/tmp/autopkgtest.4cJX46/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 wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features dlopen'"], kind test, sout raw, serr raw, env [] 188s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-artifacts 188s /tmp/autopkgtest.4cJX46/wrapper.sh: changing to directory: /tmp/autopkgtest.4cJX46/build.9ba/src 188s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 188s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 188s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 188s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 188s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: LANG=C.UTF-8 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LANGUAGE 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ADDRESS 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ALL 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_COLLATE 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_CTYPE 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_IDENTIFICATION 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MEASUREMENT 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MESSAGES 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MONETARY 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NAME 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NUMERIC 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_PAPER 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TELEPHONE 188s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TIME 188s /tmp/autopkgtest.4cJX46/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 188s /tmp/autopkgtest.4cJX46/wrapper.sh: pretending to be a login shell 188s /tmp/autopkgtest.4cJX46/wrapper.sh: will write standard error to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stderr 188s /tmp/autopkgtest.4cJX46/wrapper.sh: will write stdout to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stdout 188s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4cJX46/autopkgtest_tmp 188s /tmp/autopkgtest.4cJX46/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 188s /tmp/autopkgtest.4cJX46/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features dlopen 188s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.LPZdhf2abB/out to stdout and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stdout 188s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.LPZdhf2abB/err to standard error and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-stdout 188s /tmp/autopkgtest.4cJX46/wrapper.sh: writing script pid 9083 to /tmp/autopkgtest_script_pid 188s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 188s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 188s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 188s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.DWgKmka312/registry/ 188s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 188s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 188s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 188s 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', 'dlopen'],) {} 189s Compiling libc v0.2.169 189s Compiling proc-macro2 v1.0.92 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 189s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.DWgKmka312/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 189s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 189s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 189s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 189s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 189s Compiling unicode-ident v1.0.13 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.DWgKmka312/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 189s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 189s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 189s [libc 0.2.169] cargo:rerun-if-changed=build.rs 189s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 189s [libc 0.2.169] cargo:rustc-cfg=freebsd11 189s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 189s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 189s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.DWgKmka312/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 189s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.DWgKmka312/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern unicode_ident=/tmp/tmp.DWgKmka312/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 189s warning: unused import: `crate::ntptimeval` 189s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 189s | 189s 5 | use crate::ntptimeval; 189s | ^^^^^^^^^^^^^^^^^ 189s | 189s = note: `#[warn(unused_imports)]` on by default 189s 190s Compiling quote v1.0.37 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.DWgKmka312/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 190s Compiling cfg-if v1.0.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/cfg-if-1.0.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg] 190s parameters. Structured like an if-else chain, the first matching branch is the 190s item that gets emitted. 190s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cfg-if' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg-if CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.DWgKmka312/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.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 190s | 190s = note: this feature is not stably supported; its behavior can change in the future 190s 190s warning: `cfg-if` (lib) generated 1 warning 190s Compiling autocfg v1.1.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.DWgKmka312/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 190s warning: `libc` (lib) generated 2 warnings (1 duplicate) 190s Compiling once_cell v1.20.2 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.DWgKmka312/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 190s Compiling rustix v0.38.37 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 190s Compiling bitflags v2.8.0 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 190s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.DWgKmka312/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 190s Compiling errno v0.3.8 190s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.DWgKmka312/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 190s warning: unexpected `cfg` condition value: `bitrig` 190s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 190s | 190s 77 | target_os = "bitrig", 190s | ^^^^^^^^^^^^^^^^^^^^ 190s | 190s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 190s = note: see for more information about checking conditional configuration 190s = note: `#[warn(unexpected_cfgs)]` on by default 190s 191s warning: `errno` (lib) generated 2 warnings (1 duplicate) 191s Compiling linux-raw-sys v0.4.14 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.DWgKmka312/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 191s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 191s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 191s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 191s [rustix 0.38.37] cargo:rustc-cfg=libc 191s [rustix 0.38.37] cargo:rustc-cfg=linux_like 191s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 191s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 191s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 191s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 191s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 191s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 191s Compiling memoffset v0.8.0 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.DWgKmka312/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern autocfg=/tmp/tmp.DWgKmka312/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 191s Compiling syn v2.0.96 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.DWgKmka312/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.DWgKmka312/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 191s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 191s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.DWgKmka312/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c0552d419ea96692 -C extra-filename=-c0552d419ea96692 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 194s Compiling shlex v1.3.0 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.DWgKmka312/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 194s warning: unexpected `cfg` condition name: `manual_codegen_check` 194s --> /tmp/tmp.DWgKmka312/registry/shlex-1.3.0/src/bytes.rs:353:12 194s | 194s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 194s | ^^^^^^^^^^^^^^^^^^^^ 194s | 194s = 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` 194s = help: consider using a Cargo feature instead 194s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 194s [lints.rust] 194s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 194s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 194s = note: see for more information about checking conditional configuration 194s = note: `#[warn(unexpected_cfgs)]` on by default 194s 194s warning: `shlex` (lib) generated 1 warning 194s Compiling pkg-config v0.3.31 194s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 194s Cargo build scripts. 194s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.DWgKmka312/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 194s warning: unreachable expression 194s --> /tmp/tmp.DWgKmka312/registry/pkg-config-0.3.31/src/lib.rs:596:9 194s | 194s 592 | return true; 194s | ----------- any code following this expression is unreachable 194s ... 194s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 194s 597 | | // don't use pkg-config if explicitly disabled 194s 598 | | Some(ref val) if val == "0" => false, 194s 599 | | Some(_) => true, 194s ... | 194s 605 | | } 194s 606 | | } 194s | |_________^ unreachable expression 194s | 194s = note: `#[warn(unreachable_code)]` on by default 194s 195s warning: `pkg-config` (lib) generated 1 warning 195s Compiling wayland-sys v0.31.6 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6/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="client"' --cfg 'feature="dlopen"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="once_cell"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=604796f9df417748 -C extra-filename=-604796f9df417748 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/wayland-sys-604796f9df417748 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern pkg_config=/tmp/tmp.DWgKmka312/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 195s Compiling cc v1.1.14 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 195s C compiler to compile native C code into a static archive to be linked into Rust 195s code. 195s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.DWgKmka312/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern shlex=/tmp/tmp.DWgKmka312/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 195s warning: `rustix` (lib) generated 1 warning (1 duplicate) 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/memoffset-b637076bbed49000/build-script-build` 195s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 195s [memoffset 0.8.0] | 195s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 195s [memoffset 0.8.0] 195s [memoffset 0.8.0] warning: 1 warning emitted 195s [memoffset 0.8.0] 195s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 195s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 195s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 195s [memoffset 0.8.0] cargo:rustc-cfg=doctests 195s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 195s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 195s Compiling getrandom v0.2.15 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.DWgKmka312/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern cfg_if=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 195s warning: unexpected `cfg` condition value: `js` 195s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 195s | 195s 334 | } else if #[cfg(all(feature = "js", 195s | ^^^^^^^^^^^^^^ 195s | 195s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 195s = help: consider adding `js` as a feature in `Cargo.toml` 195s = note: see for more information about checking conditional configuration 195s = note: `#[warn(unexpected_cfgs)]` on by default 195s 195s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 195s Compiling libloading v0.8.5 195s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/libloading-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='Simonas Kazlauskas ' CARGO_PKG_DESCRIPTION='Bindings around the platform'\''s dynamic library loading primitives with greatly improved memory safety.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libloading CARGO_PKG_README=README.mkd CARGO_PKG_REPOSITORY='https://github.com/nagisa/rust_libloading/' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.DWgKmka312/registry/libloading-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c7408bf7f2c3ff44 -C extra-filename=-c7408bf7f2c3ff44 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern cfg_if=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:39:13 195s | 195s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = 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` 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s = note: requested on the command line with `-W unexpected-cfgs` 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:45:26 195s | 195s 45 | #[cfg(any(unix, windows, libloading_docs))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:49:26 195s | 195s 49 | #[cfg(any(unix, windows, libloading_docs))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:20:17 195s | 195s 20 | #[cfg(any(unix, libloading_docs))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:21:12 195s | 195s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:25:20 195s | 195s 25 | #[cfg(any(windows, libloading_docs))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 195s | 195s 3 | #[cfg(all(libloading_docs, not(unix)))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 195s | 195s 5 | #[cfg(any(not(libloading_docs), unix))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 195s | 195s 46 | #[cfg(all(libloading_docs, not(unix)))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 195s | 195s 55 | #[cfg(any(not(libloading_docs), unix))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:1:7 195s | 195s 1 | #[cfg(libloading_docs)] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:3:15 195s | 195s 3 | #[cfg(all(not(libloading_docs), unix))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:5:15 195s | 195s 5 | #[cfg(all(not(libloading_docs), windows))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:15:12 195s | 195s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 195s warning: unexpected `cfg` condition name: `libloading_docs` 195s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:197:12 195s | 195s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 195s | ^^^^^^^^^^^^^^^ 195s | 195s = help: consider using a Cargo feature instead 195s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 195s [lints.rust] 195s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 195s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 195s = note: see for more information about checking conditional configuration 195s 196s warning: `libloading` (lib) generated 16 warnings (1 duplicate) 196s Compiling dlib v0.5.2 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=dlib CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/dlib-0.5.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/dlib-0.5.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Helper macros for handling manually loading optional system libraries.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dlib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/elinorbgr/dlib' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name dlib --edition=2015 /tmp/tmp.DWgKmka312/registry/dlib-0.5.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=71d2b98a05a8f9d2 -C extra-filename=-71d2b98a05a8f9d2 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern libloading=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibloading-c7408bf7f2c3ff44.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 196s warning: `dlib` (lib) generated 1 warning (1 duplicate) 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.DWgKmka312/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 196s warning: unexpected `cfg` condition name: `stable_const` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 196s | 196s 60 | all(feature = "unstable_const", not(stable_const)), 196s | ^^^^^^^^^^^^ 196s | 196s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s = note: `#[warn(unexpected_cfgs)]` on by default 196s 196s warning: unexpected `cfg` condition name: `doctests` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 196s | 196s 66 | #[cfg(doctests)] 196s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `doctests` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 196s | 196s 69 | #[cfg(doctests)] 196s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `raw_ref_macros` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 196s | 196s 22 | #[cfg(raw_ref_macros)] 196s | ^^^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `raw_ref_macros` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 196s | 196s 30 | #[cfg(not(raw_ref_macros))] 196s | ^^^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 196s | 196s 57 | #[cfg(allow_clippy)] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 196s | 196s 69 | #[cfg(not(allow_clippy))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 196s | 196s 90 | #[cfg(allow_clippy)] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 196s | 196s 100 | #[cfg(not(allow_clippy))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 196s | 196s 125 | #[cfg(allow_clippy)] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `allow_clippy` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 196s | 196s 141 | #[cfg(not(allow_clippy))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `tuple_ty` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 196s | 196s 183 | #[cfg(tuple_ty)] 196s | ^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `maybe_uninit` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 196s | 196s 23 | #[cfg(maybe_uninit)] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `maybe_uninit` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 196s | 196s 37 | #[cfg(not(maybe_uninit))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `stable_const` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 196s | 196s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `stable_const` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 196s | 196s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 196s | ^^^^^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: unexpected `cfg` condition name: `tuple_ty` 196s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 196s | 196s 121 | #[cfg(tuple_ty)] 196s | ^^^^^^^^ 196s | 196s = help: consider using a Cargo feature instead 196s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 196s [lints.rust] 196s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 196s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 196s = note: see for more information about checking conditional configuration 196s 196s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT=1 CARGO_FEATURE_DLOPEN=1 CARGO_FEATURE_LIBC=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_ONCE_CELL=1 CARGO_FEATURE_SERVER=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-743183c32baea120/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/wayland-sys-604796f9df417748/build-script-build` 196s Compiling log v0.4.22 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 196s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.DWgKmka312/registry/log-0.4.22/src/lib.rs --error-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("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 196s warning: `log` (lib) generated 1 warning (1 duplicate) 196s Compiling memchr v2.7.4 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 196s 1, 2 or 3 byte search and single substring search. 196s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.DWgKmka312/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 196s Compiling quick-xml v0.36.1 196s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.DWgKmka312/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern memchr=/tmp/tmp.DWgKmka312/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 196s warning: unexpected `cfg` condition value: `document-features` 196s --> /tmp/tmp.DWgKmka312/registry/quick-xml-0.36.1/src/lib.rs:42:5 196s | 196s 42 | feature = "document-features", 196s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 196s | 196s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 196s = help: consider adding `document-features` as a feature in `Cargo.toml` 196s = note: see for more information about checking conditional configuration 196s = note: `#[warn(unexpected_cfgs)]` on by default 196s 196s warning: elided lifetime has a name 196s --> /tmp/tmp.DWgKmka312/registry/quick-xml-0.36.1/src/writer.rs:146:73 196s | 196s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 196s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 196s | 196s = note: `#[warn(elided_named_lifetimes)]` on by default 196s 197s Compiling wayland-backend v0.3.8 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="dlopen"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=9e6a6329414faa80 -C extra-filename=-9e6a6329414faa80 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/wayland-backend-9e6a6329414faa80 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern cc=/tmp/tmp.DWgKmka312/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 197s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT_SYSTEM=1 CARGO_FEATURE_DLOPEN=1 CARGO_FEATURE_SERVER_SYSTEM=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-86de0e6776da9d2f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/wayland-backend-9e6a6329414faa80/build-script-build` 197s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-743183c32baea120/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="dlopen"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="once_cell"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=14313f4b3e69f8e8 -C extra-filename=-14313f4b3e69f8e8 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern dlib=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libdlib-71d2b98a05a8f9d2.rmeta --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern log=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rmeta --extern memoffset=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.rmeta --extern once_cell=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 197s warning: `quick-xml` (lib) generated 2 warnings 197s Compiling zerocopy-derive v0.7.34 197s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.DWgKmka312/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=421d942aa06bb9ce -C extra-filename=-421d942aa06bb9ce --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.DWgKmka312/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 198s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 198s Compiling byteorder v1.5.0 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.DWgKmka312/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 198s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 198s Compiling downcast-rs v1.2.0 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 198s parameters, associated types, and type constraints. 198s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.DWgKmka312/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 198s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 198s Compiling scoped-tls v1.0.1 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=scoped_tls CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/scoped-tls-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/scoped-tls-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Library implementation of the standard library'\''s old `scoped_thread_local'\!'` 198s macro for providing scoped access to thread local storage (TLS) so any type can 198s be stored into TLS. 198s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=scoped-tls CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_RUST_VERSION=1.59 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.DWgKmka312/target/debug/deps rustc --crate-name scoped_tls --edition=2015 /tmp/tmp.DWgKmka312/registry/scoped-tls-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=93e06da5b10a2769 -C extra-filename=-93e06da5b10a2769 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 198s warning: `scoped-tls` (lib) generated 1 warning (1 duplicate) 198s Compiling smallvec v1.13.2 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.DWgKmka312/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 198s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 198s Compiling io-lifetimes v2.0.3 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 198s Compiling zerocopy v0.7.34 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.DWgKmka312/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=3741d75984c9d7af -C extra-filename=-3741d75984c9d7af --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern byteorder=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.DWgKmka312/target/debug/deps/libzerocopy_derive-421d942aa06bb9ce.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 198s | 198s 597 | let remainder = t.addr() % mem::align_of::(); 198s | ^^^^^^^^^^^^^^^^^^ 198s | 198s note: the lint level is defined here 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 198s | 198s 174 | unused_qualifications, 198s | ^^^^^^^^^^^^^^^^^^^^^ 198s help: remove the unnecessary path segments 198s | 198s 597 - let remainder = t.addr() % mem::align_of::(); 198s 597 + let remainder = t.addr() % align_of::(); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 198s | 198s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 198s | ^^^^^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 198s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 198s | 198s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 198s | ^^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 198s 488 + align: match NonZeroUsize::new(align_of::()) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 198s | 198s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 198s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 198s | 198s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 198s | ^^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 198s 511 + align: match NonZeroUsize::new(align_of::()) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 198s | 198s 517 | _elem_size: mem::size_of::(), 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 517 - _elem_size: mem::size_of::(), 198s 517 + _elem_size: size_of::(), 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 198s | 198s 1418 | let len = mem::size_of_val(self); 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 1418 - let len = mem::size_of_val(self); 198s 1418 + let len = size_of_val(self); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 198s | 198s 2714 | let len = mem::size_of_val(self); 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 2714 - let len = mem::size_of_val(self); 198s 2714 + let len = size_of_val(self); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 198s | 198s 2789 | let len = mem::size_of_val(self); 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 2789 - let len = mem::size_of_val(self); 198s 2789 + let len = size_of_val(self); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 198s | 198s 2863 | if bytes.len() != mem::size_of_val(self) { 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 2863 - if bytes.len() != mem::size_of_val(self) { 198s 2863 + if bytes.len() != size_of_val(self) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 198s | 198s 2920 | let size = mem::size_of_val(self); 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 2920 - let size = mem::size_of_val(self); 198s 2920 + let size = size_of_val(self); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 198s | 198s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 198s | ^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 198s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 198s | 198s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 198s | 198s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 198s | 198s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 198s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 198s | 198s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 198s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 198s | 198s 4221 | .checked_rem(mem::size_of::()) 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4221 - .checked_rem(mem::size_of::()) 198s 4221 + .checked_rem(size_of::()) 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 198s | 198s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 198s 4243 + let expected_len = match size_of::().checked_mul(count) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 198s | 198s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 198s 4268 + let expected_len = match size_of::().checked_mul(count) { 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 198s | 198s 4795 | let elem_size = mem::size_of::(); 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4795 - let elem_size = mem::size_of::(); 198s 4795 + let elem_size = size_of::(); 198s | 198s 198s warning: unnecessary qualification 198s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 198s | 198s 4825 | let elem_size = mem::size_of::(); 198s | ^^^^^^^^^^^^^^^^^ 198s | 198s help: remove the unnecessary path segments 198s | 198s 4825 - let elem_size = mem::size_of::(); 198s 4825 + let elem_size = size_of::(); 198s | 198s 198s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 198s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 198s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-86de0e6776da9d2f/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="dlopen"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=7023ae197d2e1d75 -C extra-filename=-7023ae197d2e1d75 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern downcast_rs=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern scoped_tls=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libscoped_tls-93e06da5b10a2769.rmeta --extern smallvec=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-14313f4b3e69f8e8.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 198s warning: unexpected `cfg` condition value: `rwh_06` 198s --> /usr/share/cargo/registry/wayland-backend-0.3.8/src/sys/mod.rs:132:11 198s | 198s 132 | #[cfg(all(feature = "rwh_06", feature = "client_system"))] 198s | ^^^^^^^^^^^^^^^^^^ 198s | 198s = note: expected values for `feature` are: `client_system`, `dlopen`, `log`, `raw-window-handle`, and `server_system` 198s = help: consider adding `rwh_06` as a feature in `Cargo.toml` 198s = note: see for more information about checking conditional configuration 198s = note: `#[warn(unexpected_cfgs)]` on by default 198s 199s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 199s Compiling wayland-scanner v0.31.6 199s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.DWgKmka312/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 200s warning: `wayland-backend` (lib) generated 2 warnings (1 duplicate) 200s Compiling rand_core v0.6.4 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 200s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.DWgKmka312/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern getrandom=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 200s | 200s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 200s | ^^^^^^^ 200s | 200s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s = note: `#[warn(unexpected_cfgs)]` on by default 200s 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 200s | 200s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 200s | ^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 200s | 200s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 200s | ^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 200s | 200s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 200s | ^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 200s | 200s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 200s | ^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: unexpected `cfg` condition name: `doc_cfg` 200s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 200s | 200s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 200s | ^^^^^^^ 200s | 200s = help: consider using a Cargo feature instead 200s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 200s [lints.rust] 200s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 200s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 200s = note: see for more information about checking conditional configuration 200s 200s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 200s Compiling syn v1.0.109 200s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.DWgKmka312/registry/syn-1.0.109/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="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=ae566e665d1cad87 -C extra-filename=-ae566e665d1cad87 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/syn-ae566e665d1cad87 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLONE_IMPLS=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_FULL=1 CARGO_FEATURE_PARSING=1 CARGO_FEATURE_PRINTING=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_FEATURE_QUOTE=1 CARGO_FEATURE_VISIT=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/debug/build/syn-a11c9578ec111a71/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/syn-ae566e665d1cad87/build-script-build` 201s [syn 1.0.109] cargo:rustc-cfg=syn_disable_nightly_tests 201s Compiling ppv-lite86 v0.2.20 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.DWgKmka312/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=d52b670bf7bd562c -C extra-filename=-d52b670bf7bd562c --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern zerocopy=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-3741d75984c9d7af.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.DWgKmka312/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: unexpected `cfg` condition name: `wasi_ext` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 201s | 201s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 201s | ^^^^^^^^ 201s | 201s = 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` 201s = help: consider using a Cargo feature instead 201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 201s [lints.rust] 201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 201s = note: see for more information about checking conditional configuration 201s = note: `#[warn(unexpected_cfgs)]` on by default 201s 201s warning: unexpected `cfg` condition name: `doc_cfg` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 201s | 201s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 201s | ^^^^^^^ 201s | 201s = help: consider using a Cargo feature instead 201s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 201s [lints.rust] 201s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 201s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 201s | 201s 239 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 201s | 201s 242 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 201s | 201s 245 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 201s | 201s 248 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 201s | 201s 251 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `async_std` 201s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 201s | 201s 254 | #[cfg(feature = "async_std")] 201s | ^^^^^^^^^^----------- 201s | | 201s | help: there is a expected value with a similar name: `"async-std"` 201s | 201s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 201s = help: consider adding `async_std` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 201s Compiling num-traits v0.2.19 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=8f779d9fad25b2ca -C extra-filename=-8f779d9fad25b2ca --out-dir /tmp/tmp.DWgKmka312/target/debug/build/num-traits-8f779d9fad25b2ca -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern autocfg=/tmp/tmp.DWgKmka312/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 201s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 201s Compiling cfg_aliases v0.2.1 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.DWgKmka312/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 201s Compiling fnv v1.0.7 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/fnv-1.0.7 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/fnv-1.0.7/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Fowler–Noll–Vo hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 / MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fnv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-fnv' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.7 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name fnv --edition=2015 /tmp/tmp.DWgKmka312/registry/fnv-1.0.7/lib.rs --error-format=json --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=a68fdaac9d04d051 -C extra-filename=-a68fdaac9d04d051 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: `fnv` (lib) generated 1 warning (1 duplicate) 201s Compiling equivalent v1.0.1 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.DWgKmka312/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 201s Compiling hashbrown v0.14.5 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.DWgKmka312/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 201s | 201s 14 | feature = "nightly", 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s = note: `#[warn(unexpected_cfgs)]` on by default 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 201s | 201s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 201s | 201s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 201s | 201s 49 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 201s | 201s 59 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 201s | 201s 65 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 201s | 201s 53 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 201s | 201s 55 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 201s | 201s 57 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 201s | 201s 3549 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 201s | 201s 3661 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 201s | 201s 3678 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 201s | 201s 4304 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 201s | 201s 4319 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 201s | 201s 7 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 201s | 201s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 201s | 201s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 201s | 201s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `rkyv` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 201s | 201s 3 | #[cfg(feature = "rkyv")] 201s | ^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `rkyv` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 201s | 201s 242 | #[cfg(not(feature = "nightly"))] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 201s | 201s 255 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 201s | 201s 6517 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 201s | 201s 6523 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 201s | 201s 6591 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 201s | 201s 6597 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 201s | 201s 6651 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 201s | 201s 6657 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 201s | 201s 1359 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 201s | 201s 1365 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 201s | 201s 1383 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `nightly` 201s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 201s | 201s 1389 | #[cfg(feature = "nightly")] 201s | ^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 201s = help: consider adding `nightly` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s Compiling fastrand v2.1.1 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.DWgKmka312/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: unexpected `cfg` condition value: `js` 201s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 201s | 201s 202 | feature = "js" 201s | ^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `alloc`, `default`, and `std` 201s = help: consider adding `js` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s = note: `#[warn(unexpected_cfgs)]` on by default 201s 201s warning: unexpected `cfg` condition value: `js` 201s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 201s | 201s 214 | not(feature = "js") 201s | ^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `alloc`, `default`, and `std` 201s = help: consider adding `js` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 201s Compiling tempfile v3.15.0 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.DWgKmka312/registry/tempfile-3.15.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="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=7264ab473cee172b -C extra-filename=-7264ab473cee172b --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern cfg_if=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern fastrand=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern getrandom=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --extern once_cell=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern rustix=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 201s Compiling indexmap v2.7.0 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.DWgKmka312/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern equivalent=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 201s warning: unexpected `cfg` condition value: `borsh` 201s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 201s | 201s 117 | #[cfg(feature = "borsh")] 201s | ^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 201s = help: consider adding `borsh` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s = note: `#[warn(unexpected_cfgs)]` on by default 201s 201s warning: unexpected `cfg` condition value: `rustc-rayon` 201s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 201s | 201s 131 | #[cfg(feature = "rustc-rayon")] 201s | ^^^^^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 201s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `quickcheck` 201s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 201s | 201s 38 | #[cfg(feature = "quickcheck")] 201s | ^^^^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 201s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `rustc-rayon` 201s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 201s | 201s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 201s | ^^^^^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 201s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: unexpected `cfg` condition value: `rustc-rayon` 201s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 201s | 201s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 201s | ^^^^^^^^^^^^^^^^^^^^^^^ 201s | 201s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 201s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 201s = note: see for more information about checking conditional configuration 201s 201s warning: `tempfile` (lib) generated 1 warning (1 duplicate) 201s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/num-traits-8f779d9fad25b2ca/build-script-build` 201s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 201s [num-traits 0.2.19] | 201s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 201s [num-traits 0.2.19] 201s [num-traits 0.2.19] warning: 1 warning emitted 201s [num-traits 0.2.19] 201s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 201s [num-traits 0.2.19] | 201s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 201s [num-traits 0.2.19] 201s [num-traits 0.2.19] warning: 1 warning emitted 201s [num-traits 0.2.19] 201s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 201s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 201s Compiling nix v0.29.0 201s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=18c9c6ab59c87315 -C extra-filename=-18c9c6ab59c87315 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/nix-18c9c6ab59c87315 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern cfg_aliases=/tmp/tmp.DWgKmka312/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 202s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 202s Compiling rand_chacha v0.3.1 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 202s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.DWgKmka312/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=c588a1d47b064f6f -C extra-filename=-c588a1d47b064f6f --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern ppv_lite86=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-d52b670bf7bd562c.rmeta --extern rand_core=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s Compiling wayland-server v0.31.1 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wayland_server --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-server-0.31.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("log"))' -C metadata=d1a3211630d4b2b9 -C extra-filename=-d1a3211630d4b2b9 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern downcast_rs=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern io_lifetimes=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rmeta --extern rustix=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_scanner=/tmp/tmp.DWgKmka312/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 202s Compiling wayland-client v0.31.2 202s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_client CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-client-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-client-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, client side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-client CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wayland_client --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-client-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=aaaacc345f456d89 -C extra-filename=-aaaacc345f456d89 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern rustix=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_scanner=/tmp/tmp.DWgKmka312/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/lib.rs:165:13 202s | 202s 165 | #![cfg_attr(coverage, feature(coverage_attribute))] 202s | ^^^^^^^^ 202s | 202s = 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` 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s = note: `#[warn(unexpected_cfgs)]` on by default 202s 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:123:16 202s | 202s 123 | #[cfg_attr(coverage, coverage(off))] 202s | ^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:197:16 202s | 202s 197 | #[cfg_attr(coverage, coverage(off))] 202s | ^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:347:16 202s | 202s 347 | #[cfg_attr(coverage, coverage(off))] 202s | ^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:589:16 202s | 202s 589 | #[cfg_attr(coverage, coverage(off))] 202s | ^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 202s warning: unexpected `cfg` condition name: `coverage` 202s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:696:16 202s | 202s 696 | #[cfg_attr(coverage, coverage(off))] 202s | ^^^^^^^^ 202s | 202s = help: consider using a Cargo feature instead 202s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 202s [lints.rust] 202s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 202s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 202s = note: see for more information about checking conditional configuration 202s 203s warning: `wayland-server` (lib) generated 1 warning (1 duplicate) 203s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/debug/build/syn-a11c9578ec111a71/out rustc --crate-name syn --edition=2018 /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=d2c69931b37190d8 -C extra-filename=-d2c69931b37190d8 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.DWgKmka312/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg syn_disable_nightly_tests` 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:254:13 204s | 204s 254 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 204s | ^^^^^^^ 204s | 204s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: `#[warn(unexpected_cfgs)]` on by default 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:430:12 204s | 204s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:434:12 204s | 204s 434 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:455:12 204s | 204s 455 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:804:12 204s | 204s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:867:12 204s | 204s 867 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:887:12 204s | 204s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:916:12 204s | 204s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:959:12 204s | 204s 959 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/group.rs:136:12 204s | 204s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/group.rs:214:12 204s | 204s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/group.rs:269:12 204s | 204s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:561:12 204s | 204s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:569:12 204s | 204s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:881:11 204s | 204s 881 | #[cfg(not(syn_omit_await_from_token_macro))] 204s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:883:7 204s | 204s 883 | #[cfg(syn_omit_await_from_token_macro)] 204s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:394:24 204s | 204s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:398:24 204s | 204s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:406:24 204s | 204s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:414:24 204s | 204s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:418:24 204s | 204s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:426:24 204s | 204s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 556 | / define_punctuation_structs! { 204s 557 | | "_" pub struct Underscore/1 /// `_` 204s 558 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:271:24 204s | 204s 271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:275:24 204s | 204s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:283:24 204s | 204s 283 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:291:24 204s | 204s 291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:295:24 204s | 204s 295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:303:24 204s | 204s 303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:309:24 204s | 204s 309 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:317:24 204s | 204s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s ... 204s 652 | / define_keywords! { 204s 653 | | "abstract" pub struct Abstract /// `abstract` 204s 654 | | "as" pub struct As /// `as` 204s 655 | | "async" pub struct Async /// `async` 204s ... | 204s 704 | | "yield" pub struct Yield /// `yield` 204s 705 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:444:24 204s | 204s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:452:24 204s | 204s 452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:394:24 204s | 204s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:398:24 204s | 204s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:406:24 204s | 204s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:414:24 204s | 204s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:418:24 204s | 204s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:426:24 204s | 204s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | / define_punctuation! { 204s 708 | | "+" pub struct Add/1 /// `+` 204s 709 | | "+=" pub struct AddEq/2 /// `+=` 204s 710 | | "&" pub struct And/1 /// `&` 204s ... | 204s 753 | | "~" pub struct Tilde/1 /// `~` 204s 754 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:503:24 204s | 204s 503 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:507:24 204s | 204s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:515:24 204s | 204s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:523:24 204s | 204s 523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:527:24 204s | 204s 527 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/token.rs:535:24 204s | 204s 535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 756 | / define_delimiters! { 204s 757 | | "{" pub struct Brace /// `{...}` 204s 758 | | "[" pub struct Bracket /// `[...]` 204s 759 | | "(" pub struct Paren /// `(...)` 204s 760 | | " " pub struct Group /// None-delimited group 204s 761 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ident.rs:38:12 204s | 204s 38 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:463:12 204s | 204s 463 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:148:16 204s | 204s 148 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:329:16 204s | 204s 329 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:360:16 204s | 204s 360 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:336:1 204s | 204s 336 | / ast_enum_of_structs! { 204s 337 | | /// Content of a compile-time structured attribute. 204s 338 | | /// 204s 339 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 369 | | } 204s 370 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:377:16 204s | 204s 377 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:390:16 204s | 204s 390 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:417:16 204s | 204s 417 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:412:1 204s | 204s 412 | / ast_enum_of_structs! { 204s 413 | | /// Element of a compile-time attribute list. 204s 414 | | /// 204s 415 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 425 | | } 204s 426 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:165:16 204s | 204s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:213:16 204s | 204s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:223:16 204s | 204s 223 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:237:16 204s | 204s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:251:16 204s | 204s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:557:16 204s | 204s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:565:16 204s | 204s 565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:573:16 204s | 204s 573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:581:16 204s | 204s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:630:16 204s | 204s 630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:644:16 204s | 204s 644 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/attr.rs:654:16 204s | 204s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:9:16 204s | 204s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:36:16 204s | 204s 36 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:25:1 204s | 204s 25 | / ast_enum_of_structs! { 204s 26 | | /// Data stored within an enum variant or struct. 204s 27 | | /// 204s 28 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 47 | | } 204s 48 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:56:16 204s | 204s 56 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:68:16 204s | 204s 68 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:153:16 204s | 204s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:185:16 204s | 204s 185 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:173:1 204s | 204s 173 | / ast_enum_of_structs! { 204s 174 | | /// The visibility level of an item: inherited or `pub` or 204s 175 | | /// `pub(restricted)`. 204s 176 | | /// 204s ... | 204s 199 | | } 204s 200 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:207:16 204s | 204s 207 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:218:16 204s | 204s 218 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:230:16 204s | 204s 230 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:246:16 204s | 204s 246 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:275:16 204s | 204s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:286:16 204s | 204s 286 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:327:16 204s | 204s 327 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:299:20 204s | 204s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:315:20 204s | 204s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:423:16 204s | 204s 423 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:436:16 204s | 204s 436 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:445:16 204s | 204s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:454:16 204s | 204s 454 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:467:16 204s | 204s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:474:16 204s | 204s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/data.rs:481:16 204s | 204s 481 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:89:16 204s | 204s 89 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:90:20 204s | 204s 90 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:14:1 204s | 204s 14 | / ast_enum_of_structs! { 204s 15 | | /// A Rust expression. 204s 16 | | /// 204s 17 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 249 | | } 204s 250 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:256:16 204s | 204s 256 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:268:16 204s | 204s 268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:281:16 204s | 204s 281 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:294:16 204s | 204s 294 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:307:16 204s | 204s 307 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:321:16 204s | 204s 321 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:334:16 204s | 204s 334 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:346:16 204s | 204s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:359:16 204s | 204s 359 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:373:16 204s | 204s 373 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:387:16 204s | 204s 387 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:400:16 204s | 204s 400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:418:16 204s | 204s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:431:16 204s | 204s 431 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:444:16 204s | 204s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:464:16 204s | 204s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:480:16 204s | 204s 480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:495:16 204s | 204s 495 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:508:16 204s | 204s 508 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:523:16 204s | 204s 523 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:534:16 204s | 204s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:547:16 204s | 204s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:558:16 204s | 204s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:572:16 204s | 204s 572 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:588:16 204s | 204s 588 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:604:16 204s | 204s 604 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:616:16 204s | 204s 616 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:629:16 204s | 204s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:643:16 204s | 204s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:657:16 204s | 204s 657 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:672:16 204s | 204s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:687:16 204s | 204s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:699:16 204s | 204s 699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:711:16 204s | 204s 711 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:723:16 204s | 204s 723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:737:16 204s | 204s 737 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:749:16 204s | 204s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:761:16 204s | 204s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:775:16 204s | 204s 775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:850:16 204s | 204s 850 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:920:16 204s | 204s 920 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:968:16 204s | 204s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:982:16 204s | 204s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:999:16 204s | 204s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1021:16 204s | 204s 1021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1049:16 204s | 204s 1049 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1065:16 204s | 204s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:246:15 204s | 204s 246 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:784:40 204s | 204s 784 | #[cfg(all(feature = "parsing", not(syn_no_const_vec_new)))] 204s | ^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:838:19 204s | 204s 838 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1159:16 204s | 204s 1159 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1880:16 204s | 204s 1880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1975:16 204s | 204s 1975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2001:16 204s | 204s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2063:16 204s | 204s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2084:16 204s | 204s 2084 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2101:16 204s | 204s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2119:16 204s | 204s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2147:16 204s | 204s 2147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2165:16 204s | 204s 2165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2206:16 204s | 204s 2206 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2236:16 204s | 204s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2258:16 204s | 204s 2258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2326:16 204s | 204s 2326 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2349:16 204s | 204s 2349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2372:16 204s | 204s 2372 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2381:16 204s | 204s 2381 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2396:16 204s | 204s 2396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2405:16 204s | 204s 2405 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2414:16 204s | 204s 2414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2426:16 204s | 204s 2426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2496:16 204s | 204s 2496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2547:16 204s | 204s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2571:16 204s | 204s 2571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2582:16 204s | 204s 2582 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2594:16 204s | 204s 2594 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2648:16 204s | 204s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2678:16 204s | 204s 2678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2727:16 204s | 204s 2727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2759:16 204s | 204s 2759 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2801:16 204s | 204s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2818:16 204s | 204s 2818 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2832:16 204s | 204s 2832 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2846:16 204s | 204s 2846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2879:16 204s | 204s 2879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2292:28 204s | 204s 2292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s ... 204s 2309 | / impl_by_parsing_expr! { 204s 2310 | | ExprAssign, Assign, "expected assignment expression", 204s 2311 | | ExprAssignOp, AssignOp, "expected compound assignment expression", 204s 2312 | | ExprAwait, Await, "expected await expression", 204s ... | 204s 2322 | | ExprType, Type, "expected type ascription expression", 204s 2323 | | } 204s | |_____- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `impl_by_parsing_expr` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:1248:20 204s | 204s 1248 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "full", feature = "parsing"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2539:23 204s | 204s 2539 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2905:23 204s | 204s 2905 | #[cfg(not(syn_no_const_vec_new))] 204s | ^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2907:19 204s | 204s 2907 | #[cfg(syn_no_const_vec_new)] 204s | ^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2988:16 204s | 204s 2988 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:2998:16 204s | 204s 2998 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3008:16 204s | 204s 3008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3020:16 204s | 204s 3020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3035:16 204s | 204s 3035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3046:16 204s | 204s 3046 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3057:16 204s | 204s 3057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3072:16 204s | 204s 3072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3082:16 204s | 204s 3082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3091:16 204s | 204s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3099:16 204s | 204s 3099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3110:16 204s | 204s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3141:16 204s | 204s 3141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3153:16 204s | 204s 3153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3165:16 204s | 204s 3165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3180:16 204s | 204s 3180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3197:16 204s | 204s 3197 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3211:16 204s | 204s 3211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3233:16 204s | 204s 3233 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3244:16 204s | 204s 3244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3255:16 204s | 204s 3255 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3265:16 204s | 204s 3265 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3275:16 204s | 204s 3275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3291:16 204s | 204s 3291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3304:16 204s | 204s 3304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3317:16 204s | 204s 3317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3328:16 204s | 204s 3328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3338:16 204s | 204s 3338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3348:16 204s | 204s 3348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3358:16 204s | 204s 3358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3367:16 204s | 204s 3367 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3379:16 204s | 204s 3379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3390:16 204s | 204s 3390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3400:16 204s | 204s 3400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3409:16 204s | 204s 3409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3420:16 204s | 204s 3420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3431:16 204s | 204s 3431 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3441:16 204s | 204s 3441 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3451:16 204s | 204s 3451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3460:16 204s | 204s 3460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3478:16 204s | 204s 3478 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3491:16 204s | 204s 3491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3501:16 204s | 204s 3501 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3512:16 204s | 204s 3512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3522:16 204s | 204s 3522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3531:16 204s | 204s 3531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/expr.rs:3544:16 204s | 204s 3544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:296:5 204s | 204s 296 | doc_cfg, 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:307:5 204s | 204s 307 | doc_cfg, 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:318:5 204s | 204s 318 | doc_cfg, 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:14:16 204s | 204s 14 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:35:16 204s | 204s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:23:1 204s | 204s 23 | / ast_enum_of_structs! { 204s 24 | | /// A generic type parameter, lifetime, or const generic: `T: Into`, 204s 25 | | /// `'a: 'b`, `const LEN: usize`. 204s 26 | | /// 204s ... | 204s 45 | | } 204s 46 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:53:16 204s | 204s 53 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:69:16 204s | 204s 69 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:83:16 204s | 204s 83 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:363:20 204s | 204s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 404 | generics_wrapper_impls!(ImplGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:371:20 204s | 204s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 404 | generics_wrapper_impls!(ImplGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:382:20 204s | 204s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 404 | generics_wrapper_impls!(ImplGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:386:20 204s | 204s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 404 | generics_wrapper_impls!(ImplGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:394:20 204s | 204s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 404 | generics_wrapper_impls!(ImplGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:363:20 204s | 204s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 406 | generics_wrapper_impls!(TypeGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:371:20 204s | 204s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 406 | generics_wrapper_impls!(TypeGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:382:20 204s | 204s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 406 | generics_wrapper_impls!(TypeGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:386:20 204s | 204s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 406 | generics_wrapper_impls!(TypeGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:394:20 204s | 204s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 406 | generics_wrapper_impls!(TypeGenerics); 204s | ------------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:363:20 204s | 204s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 408 | generics_wrapper_impls!(Turbofish); 204s | ---------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:371:20 204s | 204s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 408 | generics_wrapper_impls!(Turbofish); 204s | ---------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:382:20 204s | 204s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 408 | generics_wrapper_impls!(Turbofish); 204s | ---------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:386:20 204s | 204s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 408 | generics_wrapper_impls!(Turbofish); 204s | ---------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:394:20 204s | 204s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 408 | generics_wrapper_impls!(Turbofish); 204s | ---------------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:426:16 204s | 204s 426 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:475:16 204s | 204s 475 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:470:1 204s | 204s 470 | / ast_enum_of_structs! { 204s 471 | | /// A trait or lifetime used as a bound on a type parameter. 204s 472 | | /// 204s 473 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 479 | | } 204s 480 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:487:16 204s | 204s 487 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:504:16 204s | 204s 504 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:517:16 204s | 204s 517 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:535:16 204s | 204s 535 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:524:1 204s | 204s 524 | / ast_enum_of_structs! { 204s 525 | | /// A single predicate in a `where` clause: `T: Deserialize<'de>`. 204s 526 | | /// 204s 527 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 545 | | } 204s 546 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:553:16 204s | 204s 553 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:570:16 204s | 204s 570 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:583:16 204s | 204s 583 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:347:9 204s | 204s 347 | doc_cfg, 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:597:16 204s | 204s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:660:16 204s | 204s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:687:16 204s | 204s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:725:16 204s | 204s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:747:16 204s | 204s 747 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:758:16 204s | 204s 758 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:812:16 204s | 204s 812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:856:16 204s | 204s 856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:905:16 204s | 204s 905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:916:16 204s | 204s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:940:16 204s | 204s 940 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:971:16 204s | 204s 971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:982:16 204s | 204s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1057:16 204s | 204s 1057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1207:16 204s | 204s 1207 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1217:16 204s | 204s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1229:16 204s | 204s 1229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1268:16 204s | 204s 1268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1300:16 204s | 204s 1300 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1310:16 204s | 204s 1310 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1325:16 204s | 204s 1325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1335:16 204s | 204s 1335 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1345:16 204s | 204s 1345 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/generics.rs:1354:16 204s | 204s 1354 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:19:16 204s | 204s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:20:20 204s | 204s 20 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:9:1 204s | 204s 9 | / ast_enum_of_structs! { 204s 10 | | /// Things that can appear directly inside of a module or scope. 204s 11 | | /// 204s 12 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 96 | | } 204s 97 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:103:16 204s | 204s 103 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: `wayland-client` (lib) generated 7 warnings (1 duplicate) 204s Compiling wait-timeout v0.2.0 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:121:16 204s | 204s 121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wait_timeout CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wait-timeout-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wait-timeout-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A crate to wait on a child process with a timeout specified across Unix and 204s Windows platforms. 204s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wait-timeout CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wait_timeout --edition=2015 /tmp/tmp.DWgKmka312/registry/wait-timeout-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c8041ffbea216b96 -C extra-filename=-c8041ffbea216b96 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:137:16 204s | 204s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:154:16 204s | 204s 154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:167:16 204s | 204s 167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:181:16 204s | 204s 181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:201:16 204s | 204s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:215:16 204s | 204s 215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:229:16 204s | 204s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:244:16 204s | 204s 244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:263:16 204s | 204s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:279:16 204s | 204s 279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:299:16 204s | 204s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:316:16 204s | 204s 316 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:333:16 204s | 204s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:348:16 204s | 204s 348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:477:16 204s | 204s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:467:1 204s | 204s 467 | / ast_enum_of_structs! { 204s 468 | | /// A suffix of an import tree in a `use` item: `Type as Renamed` or `*`. 204s 469 | | /// 204s 470 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 493 | | } 204s 494 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:500:16 204s | 204s 500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:512:16 204s | 204s 512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:522:16 204s | 204s 522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:534:16 204s | 204s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:544:16 204s | 204s 544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:561:16 204s | 204s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:562:20 204s | 204s 562 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:551:1 204s | 204s 551 | / ast_enum_of_structs! { 204s 552 | | /// An item within an `extern` block. 204s 553 | | /// 204s 554 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 600 | | } 204s 601 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:607:16 204s | 204s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:620:16 204s | 204s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:637:16 204s | 204s 637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:651:16 204s | 204s 651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:669:16 204s | 204s 669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:670:20 204s | 204s 670 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:659:1 204s | 204s 659 | / ast_enum_of_structs! { 204s 660 | | /// An item declaration within the definition of a trait. 204s 661 | | /// 204s 662 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 708 | | } 204s 709 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:715:16 204s | 204s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:731:16 204s | 204s 731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:744:16 204s | 204s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:761:16 204s | 204s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:779:16 204s | 204s 779 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:780:20 204s | 204s 780 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:769:1 204s | 204s 769 | / ast_enum_of_structs! { 204s 770 | | /// An item within an impl block. 204s 771 | | /// 204s 772 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 818 | | } 204s 819 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:825:16 204s | 204s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:844:16 204s | 204s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:858:16 204s | 204s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:876:16 204s | 204s 876 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:889:16 204s | 204s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:927:16 204s | 204s 927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:923:1 204s | 204s 923 | / ast_enum_of_structs! { 204s 924 | | /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. 204s 925 | | /// 204s 926 | | /// *This type is available only if Syn is built with the `"full"` feature.* 204s ... | 204s 938 | | } 204s 939 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:949:16 204s | 204s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:93:15 204s | 204s 93 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:381:19 204s | 204s 381 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:597:15 204s | 204s 597 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:705:15 204s | 204s 705 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:815:15 204s | 204s 815 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:976:16 204s | 204s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1237:16 204s | 204s 1237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1264:16 204s | 204s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1305:16 204s | 204s 1305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1338:16 204s | 204s 1338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1352:16 204s | 204s 1352 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1401:16 204s | 204s 1401 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1419:16 204s | 204s 1419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1500:16 204s | 204s 1500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1535:16 204s | 204s 1535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1564:16 204s | 204s 1564 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1584:16 204s | 204s 1584 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1680:16 204s | 204s 1680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1722:16 204s | 204s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1745:16 204s | 204s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1827:16 204s | 204s 1827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1843:16 204s | 204s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1859:16 204s | 204s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1903:16 204s | 204s 1903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1921:16 204s | 204s 1921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1971:16 204s | 204s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1995:16 204s | 204s 1995 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2019:16 204s | 204s 2019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2070:16 204s | 204s 2070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2144:16 204s | 204s 2144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2200:16 204s | 204s 2200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2260:16 204s | 204s 2260 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2290:16 204s | 204s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2319:16 204s | 204s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2392:16 204s | 204s 2392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2410:16 204s | 204s 2410 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2522:16 204s | 204s 2522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2603:16 204s | 204s 2603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2628:16 204s | 204s 2628 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2668:16 204s | 204s 2668 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2726:16 204s | 204s 2726 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:1817:23 204s | 204s 1817 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2251:23 204s | 204s 2251 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2592:27 204s | 204s 2592 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2771:16 204s | 204s 2771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2787:16 204s | 204s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2799:16 204s | 204s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2815:16 204s | 204s 2815 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2830:16 204s | 204s 2830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2843:16 204s | 204s 2843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2861:16 204s | 204s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2873:16 204s | 204s 2873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2888:16 204s | 204s 2888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2903:16 204s | 204s 2903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2929:16 204s | 204s 2929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2942:16 204s | 204s 2942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2964:16 204s | 204s 2964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:2979:16 204s | 204s 2979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3001:16 204s | 204s 3001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3023:16 204s | 204s 3023 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3034:16 204s | 204s 3034 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3043:16 204s | 204s 3043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3050:16 204s | 204s 3050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3059:16 204s | 204s 3059 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3066:16 204s | 204s 3066 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3075:16 204s | 204s 3075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3091:16 204s | 204s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3110:16 204s | 204s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3130:16 204s | 204s 3130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3139:16 204s | 204s 3139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3155:16 204s | 204s 3155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3177:16 204s | 204s 3177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3193:16 204s | 204s 3193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3202:16 204s | 204s 3202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3212:16 204s | 204s 3212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3226:16 204s | 204s 3226 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3237:16 204s | 204s 3237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3273:16 204s | 204s 3273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/item.rs:3301:16 204s | 204s 3301 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/file.rs:80:16 204s | 204s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/file.rs:93:16 204s | 204s 93 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/file.rs:118:16 204s | 204s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lifetime.rs:127:16 204s | 204s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lifetime.rs:145:16 204s | 204s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:629:12 204s | 204s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:640:12 204s | 204s 640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:652:12 204s | 204s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:14:1 204s | 204s 14 | / ast_enum_of_structs! { 204s 15 | | /// A Rust literal such as a string or integer or boolean. 204s 16 | | /// 204s 17 | | /// # Syntax tree enum 204s ... | 204s 48 | | } 204s 49 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 703 | lit_extra_traits!(LitStr); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 703 | lit_extra_traits!(LitStr); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 703 | lit_extra_traits!(LitStr); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 704 | lit_extra_traits!(LitByteStr); 204s | ----------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 704 | lit_extra_traits!(LitByteStr); 204s | ----------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 704 | lit_extra_traits!(LitByteStr); 204s | ----------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 705 | lit_extra_traits!(LitByte); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 705 | lit_extra_traits!(LitByte); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 705 | lit_extra_traits!(LitByte); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 706 | lit_extra_traits!(LitChar); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 706 | lit_extra_traits!(LitChar); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 706 | lit_extra_traits!(LitChar); 204s | -------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 707 | lit_extra_traits!(LitInt); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | lit_extra_traits!(LitInt); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 707 | lit_extra_traits!(LitInt); 204s | ------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:666:20 204s | 204s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s ... 204s 708 | lit_extra_traits!(LitFloat); 204s | --------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:676:20 204s | 204s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 708 | lit_extra_traits!(LitFloat); 204s | --------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:684:20 204s | 204s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s ... 204s 708 | lit_extra_traits!(LitFloat); 204s | --------------------------- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:170:16 204s | 204s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:200:16 204s | 204s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:557:16 204s | 204s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:567:16 204s | 204s 567 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:577:16 204s | 204s 577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:587:16 204s | 204s 587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:597:16 204s | 204s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:607:16 204s | 204s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:617:16 204s | 204s 617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:744:16 204s | 204s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:816:16 204s | 204s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:827:16 204s | 204s 827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:838:16 204s | 204s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:849:16 204s | 204s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:860:16 204s | 204s 860 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:871:16 204s | 204s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:882:16 204s | 204s 882 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:900:16 204s | 204s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:907:16 204s | 204s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:914:16 204s | 204s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:921:16 204s | 204s 921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:928:16 204s | 204s 928 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:935:16 204s | 204s 935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:942:16 204s | 204s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_negative_literal_parse` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lit.rs:1568:15 204s | 204s 1568 | #[cfg(syn_no_negative_literal_parse)] 204s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_negative_literal_parse)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_negative_literal_parse)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:15:16 204s | 204s 15 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:29:16 204s | 204s 29 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:137:16 204s | 204s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:145:16 204s | 204s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:177:16 204s | 204s 177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/mac.rs:201:16 204s | 204s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:8:16 204s | 204s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:37:16 204s | 204s 37 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:57:16 204s | 204s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:70:16 204s | 204s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:83:16 204s | 204s 83 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:95:16 204s | 204s 95 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/derive.rs:231:16 204s | 204s 231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:6:16 204s | 204s 6 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:72:16 204s | 204s 72 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:130:16 204s | 204s 130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:165:16 204s | 204s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:188:16 204s | 204s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/op.rs:224:16 204s | 204s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:7:16 204s | 204s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:19:16 204s | 204s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:39:16 204s | 204s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:136:16 204s | 204s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:147:16 204s | 204s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:109:20 204s | 204s 109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:312:16 204s | 204s 312 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:321:16 204s | 204s 321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/stmt.rs:336:16 204s | 204s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:16:16 204s | 204s 16 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:17:20 204s | 204s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:5:1 204s | 204s 5 | / ast_enum_of_structs! { 204s 6 | | /// The possible types that a Rust value could have. 204s 7 | | /// 204s 8 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 204s ... | 204s 88 | | } 204s 89 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:96:16 204s | 204s 96 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:110:16 204s | 204s 110 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:128:16 204s | 204s 128 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:141:16 204s | 204s 141 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:153:16 204s | 204s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:164:16 204s | 204s 164 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:175:16 204s | 204s 175 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:186:16 204s | 204s 186 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:199:16 204s | 204s 199 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:211:16 204s | 204s 211 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:225:16 204s | 204s 225 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:239:16 204s | 204s 239 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:252:16 204s | 204s 252 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:264:16 204s | 204s 264 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:276:16 204s | 204s 276 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:288:16 204s | 204s 288 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:311:16 204s | 204s 311 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:323:16 204s | 204s 323 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:85:15 204s | 204s 85 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:342:16 204s | 204s 342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:656:16 204s | 204s 656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:667:16 204s | 204s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:680:16 204s | 204s 680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:703:16 204s | 204s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:716:16 204s | 204s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:777:16 204s | 204s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:786:16 204s | 204s 786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:795:16 204s | 204s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:828:16 204s | 204s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:837:16 204s | 204s 837 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:887:16 204s | 204s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:895:16 204s | 204s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:949:16 204s | 204s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:992:16 204s | 204s 992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1003:16 204s | 204s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1024:16 204s | 204s 1024 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1098:16 204s | 204s 1098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1108:16 204s | 204s 1108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:357:20 204s | 204s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:869:20 204s | 204s 869 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:904:20 204s | 204s 904 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:958:20 204s | 204s 958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1128:16 204s | 204s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1137:16 204s | 204s 1137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1148:16 204s | 204s 1148 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1162:16 204s | 204s 1162 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1172:16 204s | 204s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1193:16 204s | 204s 1193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1200:16 204s | 204s 1200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1209:16 204s | 204s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1216:16 204s | 204s 1216 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1224:16 204s | 204s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1232:16 204s | 204s 1232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1241:16 204s | 204s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1250:16 204s | 204s 1250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1257:16 204s | 204s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1264:16 204s | 204s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1277:16 204s | 204s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1289:16 204s | 204s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/ty.rs:1297:16 204s | 204s 1297 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:16:16 204s | 204s 16 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:17:20 204s | 204s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/macros.rs:155:20 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s ::: /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:5:1 204s | 204s 5 | / ast_enum_of_structs! { 204s 6 | | /// A pattern in a local binding, function signature, match expression, or 204s 7 | | /// various other places. 204s 8 | | /// 204s ... | 204s 97 | | } 204s 98 | | } 204s | |_- in this macro invocation 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:104:16 204s | 204s 104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:119:16 204s | 204s 119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:136:16 204s | 204s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:147:16 204s | 204s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:158:16 204s | 204s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:176:16 204s | 204s 176 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:188:16 204s | 204s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:201:16 204s | 204s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:214:16 204s | 204s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:225:16 204s | 204s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:237:16 204s | 204s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:251:16 204s | 204s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:263:16 204s | 204s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:275:16 204s | 204s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:288:16 204s | 204s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:302:16 204s | 204s 302 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:94:15 204s | 204s 94 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:318:16 204s | 204s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:769:16 204s | 204s 769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:777:16 204s | 204s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:791:16 204s | 204s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:807:16 204s | 204s 807 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:816:16 204s | 204s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:826:16 204s | 204s 826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 204s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:27:23 204s | 204s 27 | use std::sync::{Once, ONCE_INIT, Mutex}; 204s | ^^^^^^^^^ 204s | 204s note: the lint level is defined here 204s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/lib.rs:31:23 204s | 204s 31 | #![deny(missing_docs, warnings)] 204s | ^^^^^^^^ 204s = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` 204s 204s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 204s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:32:21 204s | 204s 32 | static INIT: Once = ONCE_INIT; 204s | ^^^^^^^^^ 204s | 204s help: replace the use of the deprecated constant 204s | 204s 32 | static INIT: Once = Once::new(); 204s | ~~~~~~~~~~~ 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:834:16 204s | 204s 834 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:844:16 204s | 204s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:853:16 204s | 204s 853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:863:16 204s | 204s 863 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:871:16 204s | 204s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:879:16 204s | 204s 879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:889:16 204s | 204s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:899:16 204s | 204s 899 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:907:16 204s | 204s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/pat.rs:916:16 204s | 204s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:9:16 204s | 204s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:35:16 204s | 204s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:67:16 204s | 204s 67 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:105:16 204s | 204s 105 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:130:16 204s | 204s 130 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:144:16 204s | 204s 144 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:157:16 204s | 204s 157 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:171:16 204s | 204s 171 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:201:16 204s | 204s 201 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:218:16 204s | 204s 218 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:225:16 204s | 204s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:358:16 204s | 204s 358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:385:16 204s | 204s 385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:397:16 204s | 204s 397 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:430:16 204s | 204s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:442:16 204s | 204s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:505:20 204s | 204s 505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:569:20 204s | 204s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:591:20 204s | 204s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:693:16 204s | 204s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:701:16 204s | 204s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:709:16 204s | 204s 709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:724:16 204s | 204s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:752:16 204s | 204s 752 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:793:16 204s | 204s 793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:802:16 204s | 204s 802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/path.rs:811:16 204s | 204s 811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:371:12 204s | 204s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:386:12 204s | 204s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:395:12 204s | 204s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:408:12 204s | 204s 408 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:422:12 204s | 204s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:1012:12 204s | 204s 1012 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:54:15 204s | 204s 54 | #[cfg(not(syn_no_const_vec_new))] 204s | ^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:63:11 204s | 204s 63 | #[cfg(syn_no_const_vec_new)] 204s | ^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:267:16 204s | 204s 267 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:288:16 204s | 204s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:325:16 204s | 204s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:346:16 204s | 204s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:1060:16 204s | 204s 1060 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/punctuated.rs:1071:16 204s | 204s 1071 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse_quote.rs:68:12 204s | 204s 68 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse_quote.rs:100:12 204s | 204s 100 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse_macro_input.rs:107:12 204s | 204s 107 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/lib.rs:579:16 204s | 204s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "visit")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:1216:15 204s | 204s 1216 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:1905:15 204s | 204s 1905 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:2071:15 204s | 204s 2071 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:2207:15 204s | 204s 2207 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:2807:15 204s | 204s 2807 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:3263:15 204s | 204s 3263 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/visit.rs:3392:15 204s | 204s 3392 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:7:12 204s | 204s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:17:12 204s | 204s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:29:12 204s | 204s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:43:12 204s | 204s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:46:12 204s | 204s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:53:12 204s | 204s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:66:12 204s | 204s 66 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:77:12 204s | 204s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:80:12 204s | 204s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:87:12 204s | 204s 87 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:98:12 204s | 204s 98 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:108:12 204s | 204s 108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:120:12 204s | 204s 120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:135:12 204s | 204s 135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:146:12 204s | 204s 146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:157:12 204s | 204s 157 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:168:12 204s | 204s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:179:12 204s | 204s 179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:189:12 204s | 204s 189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:202:12 204s | 204s 202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:282:12 204s | 204s 282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:293:12 204s | 204s 293 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:305:12 204s | 204s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:317:12 204s | 204s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:329:12 204s | 204s 329 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:341:12 204s | 204s 341 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:353:12 204s | 204s 353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:364:12 204s | 204s 364 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:375:12 204s | 204s 375 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:387:12 204s | 204s 387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:399:12 204s | 204s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:411:12 204s | 204s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:428:12 204s | 204s 428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:439:12 204s | 204s 439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:451:12 204s | 204s 451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:466:12 204s | 204s 466 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:477:12 204s | 204s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:490:12 204s | 204s 490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:502:12 204s | 204s 502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:515:12 204s | 204s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:525:12 204s | 204s 525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:537:12 204s | 204s 537 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:547:12 204s | 204s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:560:12 204s | 204s 560 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:575:12 204s | 204s 575 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:586:12 204s | 204s 586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:597:12 204s | 204s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:609:12 204s | 204s 609 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:622:12 204s | 204s 622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:635:12 204s | 204s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:646:12 204s | 204s 646 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:660:12 204s | 204s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:671:12 204s | 204s 671 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:682:12 204s | 204s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:693:12 204s | 204s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:705:12 204s | 204s 705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:716:12 204s | 204s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:727:12 204s | 204s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:740:12 204s | 204s 740 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:751:12 204s | 204s 751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:764:12 204s | 204s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:776:12 204s | 204s 776 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:788:12 204s | 204s 788 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:799:12 204s | 204s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:809:12 204s | 204s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:819:12 204s | 204s 819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:830:12 204s | 204s 830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:840:12 204s | 204s 840 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:855:12 204s | 204s 855 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:867:12 204s | 204s 867 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:878:12 204s | 204s 878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:894:12 204s | 204s 894 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:907:12 204s | 204s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:920:12 204s | 204s 920 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:930:12 204s | 204s 930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:941:12 204s | 204s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:953:12 204s | 204s 953 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:968:12 204s | 204s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:986:12 204s | 204s 986 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:997:12 204s | 204s 997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1010:12 204s | 204s 1010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1027:12 204s | 204s 1027 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1037:12 204s | 204s 1037 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1064:12 204s | 204s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1081:12 204s | 204s 1081 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1096:12 204s | 204s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1111:12 204s | 204s 1111 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1123:12 204s | 204s 1123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1135:12 204s | 204s 1135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1152:12 204s | 204s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1164:12 204s | 204s 1164 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1177:12 204s | 204s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1191:12 204s | 204s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1209:12 204s | 204s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1224:12 204s | 204s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1243:12 204s | 204s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1259:12 204s | 204s 1259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1275:12 204s | 204s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1289:12 204s | 204s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1303:12 204s | 204s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1313:12 204s | 204s 1313 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1324:12 204s | 204s 1324 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1339:12 204s | 204s 1339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1349:12 204s | 204s 1349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1362:12 204s | 204s 1362 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1374:12 204s | 204s 1374 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1385:12 204s | 204s 1385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1395:12 204s | 204s 1395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1406:12 204s | 204s 1406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1417:12 204s | 204s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1428:12 204s | 204s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1440:12 204s | 204s 1440 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1450:12 204s | 204s 1450 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1461:12 204s | 204s 1461 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1487:12 204s | 204s 1487 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1498:12 204s | 204s 1498 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1511:12 204s | 204s 1511 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1521:12 204s | 204s 1521 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1531:12 204s | 204s 1531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1542:12 204s | 204s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1553:12 204s | 204s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1565:12 204s | 204s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1577:12 204s | 204s 1577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1587:12 204s | 204s 1587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1598:12 204s | 204s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1611:12 204s | 204s 1611 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1622:12 204s | 204s 1622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1633:12 204s | 204s 1633 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1645:12 204s | 204s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1655:12 204s | 204s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1665:12 204s | 204s 1665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1678:12 204s | 204s 1678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1688:12 204s | 204s 1688 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1699:12 204s | 204s 1699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1710:12 204s | 204s 1710 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1722:12 204s | 204s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1735:12 204s | 204s 1735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1738:12 204s | 204s 1738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1745:12 204s | 204s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1757:12 204s | 204s 1757 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1767:12 204s | 204s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1786:12 204s | 204s 1786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1798:12 204s | 204s 1798 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1810:12 204s | 204s 1810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1813:12 204s | 204s 1813 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1820:12 204s | 204s 1820 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1835:12 204s | 204s 1835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1850:12 204s | 204s 1850 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1861:12 204s | 204s 1861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1873:12 204s | 204s 1873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1889:12 204s | 204s 1889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1914:12 204s | 204s 1914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1926:12 204s | 204s 1926 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1942:12 204s | 204s 1942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1952:12 204s | 204s 1952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1962:12 204s | 204s 1962 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1971:12 204s | 204s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1978:12 204s | 204s 1978 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1987:12 204s | 204s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2001:12 204s | 204s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2011:12 204s | 204s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2021:12 204s | 204s 2021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2031:12 204s | 204s 2031 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2043:12 204s | 204s 2043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2055:12 204s | 204s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2065:12 204s | 204s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2075:12 204s | 204s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2085:12 204s | 204s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2088:12 204s | 204s 2088 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2095:12 204s | 204s 2095 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2104:12 204s | 204s 2104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2114:12 204s | 204s 2114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2123:12 204s | 204s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2134:12 204s | 204s 2134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2145:12 204s | 204s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2158:12 204s | 204s 2158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2168:12 204s | 204s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2180:12 204s | 204s 2180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2189:12 204s | 204s 2189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2198:12 204s | 204s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2210:12 204s | 204s 2210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2222:12 204s | 204s 2222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:2232:12 204s | 204s 2232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:276:23 204s | 204s 276 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:849:19 204s | 204s 849 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:962:19 204s | 204s 962 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1058:19 204s | 204s 1058 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1481:19 204s | 204s 1481 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1829:19 204s | 204s 1829 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/clone.rs:1908:19 204s | 204s 1908 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:8:12 204s | 204s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:11:12 204s | 204s 11 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:18:12 204s | 204s 18 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:21:12 204s | 204s 21 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:28:12 204s | 204s 28 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:31:12 204s | 204s 31 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:39:12 204s | 204s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:42:12 204s | 204s 42 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:53:12 204s | 204s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:56:12 204s | 204s 56 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:64:12 204s | 204s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:67:12 204s | 204s 67 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:74:12 204s | 204s 74 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:77:12 204s | 204s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:114:12 204s | 204s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:117:12 204s | 204s 117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:124:12 204s | 204s 124 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:127:12 204s | 204s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:134:12 204s | 204s 134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:137:12 204s | 204s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:144:12 204s | 204s 144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:147:12 204s | 204s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:155:12 204s | 204s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:158:12 204s | 204s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:165:12 204s | 204s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:168:12 204s | 204s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:180:12 204s | 204s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:183:12 204s | 204s 183 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:190:12 204s | 204s 190 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:193:12 204s | 204s 193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:200:12 204s | 204s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:203:12 204s | 204s 203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:210:12 204s | 204s 210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:213:12 204s | 204s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:221:12 204s | 204s 221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:224:12 204s | 204s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:305:12 204s | 204s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:308:12 204s | 204s 308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:315:12 204s | 204s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:318:12 204s | 204s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:325:12 204s | 204s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:328:12 204s | 204s 328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:336:12 204s | 204s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:339:12 204s | 204s 339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:347:12 204s | 204s 347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:350:12 204s | 204s 350 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:357:12 204s | 204s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:360:12 204s | 204s 360 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:368:12 204s | 204s 368 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:371:12 204s | 204s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:379:12 204s | 204s 379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:382:12 204s | 204s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:389:12 204s | 204s 389 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:392:12 204s | 204s 392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:399:12 204s | 204s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:402:12 204s | 204s 402 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:409:12 204s | 204s 409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:412:12 204s | 204s 412 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:419:12 204s | 204s 419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:422:12 204s | 204s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:432:12 204s | 204s 432 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:435:12 204s | 204s 435 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:442:12 204s | 204s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:445:12 204s | 204s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:453:12 204s | 204s 453 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:456:12 204s | 204s 456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:464:12 204s | 204s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:467:12 204s | 204s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:474:12 204s | 204s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:477:12 204s | 204s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:486:12 204s | 204s 486 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:489:12 204s | 204s 489 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:496:12 204s | 204s 496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:499:12 204s | 204s 499 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:506:12 204s | 204s 506 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:509:12 204s | 204s 509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:516:12 204s | 204s 516 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:519:12 204s | 204s 519 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:526:12 204s | 204s 526 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:529:12 204s | 204s 529 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:536:12 204s | 204s 536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:539:12 204s | 204s 539 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:546:12 204s | 204s 546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:549:12 204s | 204s 549 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:558:12 204s | 204s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:561:12 204s | 204s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:568:12 204s | 204s 568 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:571:12 204s | 204s 571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:578:12 204s | 204s 578 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:581:12 204s | 204s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:589:12 204s | 204s 589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:592:12 204s | 204s 592 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:600:12 204s | 204s 600 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:603:12 204s | 204s 603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:610:12 204s | 204s 610 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:613:12 204s | 204s 613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:620:12 204s | 204s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:623:12 204s | 204s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:632:12 204s | 204s 632 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:635:12 204s | 204s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:642:12 204s | 204s 642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:645:12 204s | 204s 645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:652:12 204s | 204s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:655:12 204s | 204s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:662:12 204s | 204s 662 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:665:12 204s | 204s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:672:12 204s | 204s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:675:12 204s | 204s 675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:682:12 204s | 204s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:685:12 204s | 204s 685 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:692:12 204s | 204s 692 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:695:12 204s | 204s 695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:703:12 204s | 204s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:706:12 204s | 204s 706 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:713:12 204s | 204s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:716:12 204s | 204s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:724:12 204s | 204s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:727:12 204s | 204s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:735:12 204s | 204s 735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:738:12 204s | 204s 738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:746:12 204s | 204s 746 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:749:12 204s | 204s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:761:12 204s | 204s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:764:12 204s | 204s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:771:12 204s | 204s 771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:774:12 204s | 204s 774 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:781:12 204s | 204s 781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:784:12 204s | 204s 784 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:792:12 204s | 204s 792 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:795:12 204s | 204s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:806:12 204s | 204s 806 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:809:12 204s | 204s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:825:12 204s | 204s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:828:12 204s | 204s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:835:12 204s | 204s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:838:12 204s | 204s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:846:12 204s | 204s 846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:849:12 204s | 204s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:858:12 204s | 204s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:861:12 204s | 204s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:868:12 204s | 204s 868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:871:12 204s | 204s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:895:12 204s | 204s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:898:12 204s | 204s 898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:914:12 204s | 204s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:917:12 204s | 204s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:931:12 204s | 204s 931 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:934:12 204s | 204s 934 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:942:12 204s | 204s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:945:12 204s | 204s 945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:961:12 204s | 204s 961 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:964:12 204s | 204s 964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:973:12 204s | 204s 973 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:976:12 204s | 204s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:984:12 204s | 204s 984 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:987:12 204s | 204s 987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:996:12 204s | 204s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:999:12 204s | 204s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1008:12 204s | 204s 1008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1011:12 204s | 204s 1011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1039:12 204s | 204s 1039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1042:12 204s | 204s 1042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1050:12 204s | 204s 1050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1053:12 204s | 204s 1053 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1061:12 204s | 204s 1061 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1064:12 204s | 204s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1072:12 204s | 204s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1075:12 204s | 204s 1075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1083:12 204s | 204s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1086:12 204s | 204s 1086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1093:12 204s | 204s 1093 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1096:12 204s | 204s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1106:12 204s | 204s 1106 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1109:12 204s | 204s 1109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1117:12 204s | 204s 1117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1120:12 204s | 204s 1120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1128:12 204s | 204s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1131:12 204s | 204s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1139:12 204s | 204s 1139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1142:12 204s | 204s 1142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1151:12 204s | 204s 1151 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1154:12 204s | 204s 1154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1163:12 204s | 204s 1163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1166:12 204s | 204s 1166 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1177:12 204s | 204s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1180:12 204s | 204s 1180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1188:12 204s | 204s 1188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1191:12 204s | 204s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1199:12 204s | 204s 1199 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1202:12 204s | 204s 1202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1210:12 204s | 204s 1210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1213:12 204s | 204s 1213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1221:12 204s | 204s 1221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1224:12 204s | 204s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1231:12 204s | 204s 1231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1234:12 204s | 204s 1234 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1241:12 204s | 204s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1243:12 204s | 204s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1261:12 204s | 204s 1261 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1263:12 204s | 204s 1263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1269:12 204s | 204s 1269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1271:12 204s | 204s 1271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1273:12 204s | 204s 1273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1275:12 204s | 204s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1277:12 204s | 204s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1279:12 204s | 204s 1279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1282:12 204s | 204s 1282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1285:12 204s | 204s 1285 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1292:12 204s | 204s 1292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1295:12 204s | 204s 1295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1303:12 204s | 204s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1306:12 204s | 204s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1318:12 204s | 204s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1321:12 204s | 204s 1321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1333:12 204s | 204s 1333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1336:12 204s | 204s 1336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1343:12 204s | 204s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1346:12 204s | 204s 1346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1353:12 204s | 204s 1353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1356:12 204s | 204s 1356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1363:12 204s | 204s 1363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1366:12 204s | 204s 1366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1377:12 204s | 204s 1377 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1380:12 204s | 204s 1380 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1387:12 204s | 204s 1387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1390:12 204s | 204s 1390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1417:12 204s | 204s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1420:12 204s | 204s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1427:12 204s | 204s 1427 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1430:12 204s | 204s 1430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1439:12 204s | 204s 1439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1442:12 204s | 204s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1449:12 204s | 204s 1449 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1452:12 204s | 204s 1452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1459:12 204s | 204s 1459 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1462:12 204s | 204s 1462 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1470:12 204s | 204s 1470 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1473:12 204s | 204s 1473 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1480:12 204s | 204s 1480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1483:12 204s | 204s 1483 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1491:12 204s | 204s 1491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1494:12 204s | 204s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1502:12 204s | 204s 1502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1505:12 204s | 204s 1505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1512:12 204s | 204s 1512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1515:12 204s | 204s 1515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1522:12 204s | 204s 1522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1525:12 204s | 204s 1525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1533:12 204s | 204s 1533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1536:12 204s | 204s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1543:12 204s | 204s 1543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1546:12 204s | 204s 1546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1553:12 204s | 204s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1556:12 204s | 204s 1556 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1563:12 204s | 204s 1563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1566:12 204s | 204s 1566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1573:12 204s | 204s 1573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1576:12 204s | 204s 1576 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1583:12 204s | 204s 1583 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1586:12 204s | 204s 1586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1604:12 204s | 204s 1604 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1607:12 204s | 204s 1607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1614:12 204s | 204s 1614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1617:12 204s | 204s 1617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1624:12 204s | 204s 1624 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1627:12 204s | 204s 1627 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1634:12 204s | 204s 1634 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1637:12 204s | 204s 1637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1645:12 204s | 204s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1648:12 204s | 204s 1648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1656:12 204s | 204s 1656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1659:12 204s | 204s 1659 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1670:12 204s | 204s 1670 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1673:12 204s | 204s 1673 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1681:12 204s | 204s 1681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1684:12 204s | 204s 1684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1695:12 204s | 204s 1695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1698:12 204s | 204s 1698 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1709:12 204s | 204s 1709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1712:12 204s | 204s 1712 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1725:12 204s | 204s 1725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1728:12 204s | 204s 1728 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1736:12 204s | 204s 1736 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1739:12 204s | 204s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1750:12 204s | 204s 1750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1753:12 204s | 204s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1769:12 204s | 204s 1769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1772:12 204s | 204s 1772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1780:12 204s | 204s 1780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1783:12 204s | 204s 1783 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1791:12 204s | 204s 1791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1794:12 204s | 204s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1802:12 204s | 204s 1802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1805:12 204s | 204s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1814:12 204s | 204s 1814 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1817:12 204s | 204s 1817 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1843:12 204s | 204s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1846:12 204s | 204s 1846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1853:12 204s | 204s 1853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1856:12 204s | 204s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1865:12 204s | 204s 1865 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1868:12 204s | 204s 1868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1875:12 204s | 204s 1875 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1878:12 204s | 204s 1878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1885:12 204s | 204s 1885 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1888:12 204s | 204s 1888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1895:12 204s | 204s 1895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1898:12 204s | 204s 1898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1905:12 204s | 204s 1905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1908:12 204s | 204s 1908 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1915:12 204s | 204s 1915 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1918:12 204s | 204s 1918 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1927:12 204s | 204s 1927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1930:12 204s | 204s 1930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1945:12 204s | 204s 1945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1948:12 204s | 204s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1955:12 204s | 204s 1955 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1958:12 204s | 204s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1965:12 204s | 204s 1965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1968:12 204s | 204s 1968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1976:12 204s | 204s 1976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1979:12 204s | 204s 1979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1987:12 204s | 204s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1990:12 204s | 204s 1990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:1997:12 204s | 204s 1997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2000:12 204s | 204s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2007:12 204s | 204s 2007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2010:12 204s | 204s 2010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2017:12 204s | 204s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2020:12 204s | 204s 2020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2032:12 204s | 204s 2032 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2035:12 204s | 204s 2035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2042:12 204s | 204s 2042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2045:12 204s | 204s 2045 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2052:12 204s | 204s 2052 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2055:12 204s | 204s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2062:12 204s | 204s 2062 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2065:12 204s | 204s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2072:12 204s | 204s 2072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2075:12 204s | 204s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2082:12 204s | 204s 2082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2085:12 204s | 204s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2099:12 204s | 204s 2099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2102:12 204s | 204s 2102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2109:12 204s | 204s 2109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2112:12 204s | 204s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2120:12 204s | 204s 2120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2123:12 204s | 204s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2130:12 204s | 204s 2130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2133:12 204s | 204s 2133 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2140:12 204s | 204s 2140 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2143:12 204s | 204s 2143 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2150:12 204s | 204s 2150 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2153:12 204s | 204s 2153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2168:12 204s | 204s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2171:12 204s | 204s 2171 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2178:12 204s | 204s 2178 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/eq.rs:2181:12 204s | 204s 2181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:9:12 204s | 204s 9 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:19:12 204s | 204s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:30:12 204s | 204s 30 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:44:12 204s | 204s 44 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:61:12 204s | 204s 61 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:73:12 204s | 204s 73 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:85:12 204s | 204s 85 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:180:12 204s | 204s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:191:12 204s | 204s 191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:201:12 204s | 204s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:211:12 204s | 204s 211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:225:12 204s | 204s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:236:12 204s | 204s 236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:259:12 204s | 204s 259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:269:12 204s | 204s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:280:12 204s | 204s 280 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:290:12 204s | 204s 290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:304:12 204s | 204s 304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:507:12 204s | 204s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:518:12 204s | 204s 518 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:530:12 204s | 204s 530 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:543:12 204s | 204s 543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:555:12 204s | 204s 555 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:566:12 204s | 204s 566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:579:12 204s | 204s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:591:12 204s | 204s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:602:12 204s | 204s 602 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:614:12 204s | 204s 614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:626:12 204s | 204s 626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:638:12 204s | 204s 638 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:654:12 204s | 204s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:665:12 204s | 204s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:677:12 204s | 204s 677 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:691:12 204s | 204s 691 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:702:12 204s | 204s 702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:715:12 204s | 204s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:727:12 204s | 204s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:739:12 204s | 204s 739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:750:12 204s | 204s 750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:762:12 204s | 204s 762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:773:12 204s | 204s 773 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:785:12 204s | 204s 785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:799:12 204s | 204s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:810:12 204s | 204s 810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:822:12 204s | 204s 822 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:835:12 204s | 204s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:847:12 204s | 204s 847 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:859:12 204s | 204s 859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:870:12 204s | 204s 870 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:884:12 204s | 204s 884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:895:12 204s | 204s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:906:12 204s | 204s 906 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:917:12 204s | 204s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:929:12 204s | 204s 929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:941:12 204s | 204s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:952:12 204s | 204s 952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:965:12 204s | 204s 965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:976:12 204s | 204s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:990:12 204s | 204s 990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1003:12 204s | 204s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1016:12 204s | 204s 1016 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1038:12 204s | 204s 1038 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1048:12 204s | 204s 1048 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1058:12 204s | 204s 1058 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1070:12 204s | 204s 1070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1089:12 204s | 204s 1089 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1122:12 204s | 204s 1122 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1134:12 204s | 204s 1134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1146:12 204s | 204s 1146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1160:12 204s | 204s 1160 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1172:12 204s | 204s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1203:12 204s | 204s 1203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1222:12 204s | 204s 1222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1245:12 204s | 204s 1245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1258:12 204s | 204s 1258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1291:12 204s | 204s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1306:12 204s | 204s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1318:12 204s | 204s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1332:12 204s | 204s 1332 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1347:12 204s | 204s 1347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1428:12 204s | 204s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1442:12 204s | 204s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1456:12 204s | 204s 1456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1469:12 204s | 204s 1469 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1482:12 204s | 204s 1482 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1494:12 204s | 204s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1510:12 204s | 204s 1510 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1523:12 204s | 204s 1523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1536:12 204s | 204s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1550:12 204s | 204s 1550 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1565:12 204s | 204s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1580:12 204s | 204s 1580 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1598:12 204s | 204s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1612:12 204s | 204s 1612 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1626:12 204s | 204s 1626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1640:12 204s | 204s 1640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1653:12 204s | 204s 1653 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1663:12 204s | 204s 1663 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1675:12 204s | 204s 1675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1717:12 204s | 204s 1717 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1727:12 204s | 204s 1727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1739:12 204s | 204s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1751:12 204s | 204s 1751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1771:12 204s | 204s 1771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1794:12 204s | 204s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1805:12 204s | 204s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1816:12 204s | 204s 1816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1826:12 204s | 204s 1826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1845:12 204s | 204s 1845 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1856:12 204s | 204s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1933:12 204s | 204s 1933 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1944:12 204s | 204s 1944 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1958:12 204s | 204s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1969:12 204s | 204s 1969 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1980:12 204s | 204s 1980 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1992:12 204s | 204s 1992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2004:12 204s | 204s 2004 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2017:12 204s | 204s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2029:12 204s | 204s 2029 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2039:12 204s | 204s 2039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2050:12 204s | 204s 2050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2063:12 204s | 204s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2074:12 204s | 204s 2074 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2086:12 204s | 204s 2086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2098:12 204s | 204s 2098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2108:12 204s | 204s 2108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2119:12 204s | 204s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2141:12 204s | 204s 2141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2152:12 204s | 204s 2152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2163:12 204s | 204s 2163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2174:12 204s | 204s 2174 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2186:12 204s | 204s 2186 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2198:12 204s | 204s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2215:12 204s | 204s 2215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2227:12 204s | 204s 2227 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2245:12 204s | 204s 2245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2263:12 204s | 204s 2263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2290:12 204s | 204s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2303:12 204s | 204s 2303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2320:12 204s | 204s 2320 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2353:12 204s | 204s 2353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2366:12 204s | 204s 2366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2378:12 204s | 204s 2378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2391:12 204s | 204s 2391 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2406:12 204s | 204s 2406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2479:12 204s | 204s 2479 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2490:12 204s | 204s 2490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2505:12 204s | 204s 2505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2515:12 204s | 204s 2515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2525:12 204s | 204s 2525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2533:12 204s | 204s 2533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2543:12 204s | 204s 2543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2551:12 204s | 204s 2551 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2566:12 204s | 204s 2566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2585:12 204s | 204s 2585 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2595:12 204s | 204s 2595 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2606:12 204s | 204s 2606 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2618:12 204s | 204s 2618 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2630:12 204s | 204s 2630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2640:12 204s | 204s 2640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2651:12 204s | 204s 2651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2661:12 204s | 204s 2661 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2681:12 204s | 204s 2681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2689:12 204s | 204s 2689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2699:12 204s | 204s 2699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2709:12 204s | 204s 2709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2720:12 204s | 204s 2720 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2731:12 204s | 204s 2731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2762:12 204s | 204s 2762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2772:12 204s | 204s 2772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2785:12 204s | 204s 2785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2793:12 204s | 204s 2793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2801:12 204s | 204s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2812:12 204s | 204s 2812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2838:12 204s | 204s 2838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2848:12 204s | 204s 2848 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:501:23 204s | 204s 501 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1116:19 204s | 204s 1116 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1285:19 204s | 204s 1285 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1422:19 204s | 204s 1422 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:1927:19 204s | 204s 1927 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2347:19 204s | 204s 2347 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/hash.rs:2473:19 204s | 204s 2473 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:7:12 204s | 204s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:17:12 204s | 204s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:29:12 204s | 204s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:43:12 204s | 204s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:57:12 204s | 204s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:70:12 204s | 204s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:81:12 204s | 204s 81 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:229:12 204s | 204s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:240:12 204s | 204s 240 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:250:12 204s | 204s 250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:262:12 204s | 204s 262 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:277:12 204s | 204s 277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:288:12 204s | 204s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:311:12 204s | 204s 311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:322:12 204s | 204s 322 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:333:12 204s | 204s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:343:12 204s | 204s 343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:356:12 204s | 204s 356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:596:12 204s | 204s 596 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:607:12 204s | 204s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:619:12 204s | 204s 619 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:631:12 204s | 204s 631 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:643:12 204s | 204s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:655:12 204s | 204s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:667:12 204s | 204s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:678:12 204s | 204s 678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:689:12 204s | 204s 689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:701:12 204s | 204s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:713:12 204s | 204s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:725:12 204s | 204s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:742:12 204s | 204s 742 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:753:12 204s | 204s 753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:765:12 204s | 204s 765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:780:12 204s | 204s 780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:791:12 204s | 204s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:804:12 204s | 204s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:816:12 204s | 204s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:829:12 204s | 204s 829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:839:12 204s | 204s 839 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:851:12 204s | 204s 851 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:861:12 204s | 204s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:874:12 204s | 204s 874 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:889:12 204s | 204s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:900:12 204s | 204s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:911:12 204s | 204s 911 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:923:12 204s | 204s 923 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:936:12 204s | 204s 936 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:949:12 204s | 204s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:960:12 204s | 204s 960 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:974:12 204s | 204s 974 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:985:12 204s | 204s 985 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:996:12 204s | 204s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1007:12 204s | 204s 1007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1019:12 204s | 204s 1019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1030:12 204s | 204s 1030 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1041:12 204s | 204s 1041 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1054:12 204s | 204s 1054 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1065:12 204s | 204s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1078:12 204s | 204s 1078 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1090:12 204s | 204s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1102:12 204s | 204s 1102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1121:12 204s | 204s 1121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1131:12 204s | 204s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1141:12 204s | 204s 1141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1152:12 204s | 204s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1170:12 204s | 204s 1170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1205:12 204s | 204s 1205 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1217:12 204s | 204s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1228:12 204s | 204s 1228 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1244:12 204s | 204s 1244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1257:12 204s | 204s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1290:12 204s | 204s 1290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1308:12 204s | 204s 1308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1331:12 204s | 204s 1331 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1343:12 204s | 204s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1378:12 204s | 204s 1378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1396:12 204s | 204s 1396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1407:12 204s | 204s 1407 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1420:12 204s | 204s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1437:12 204s | 204s 1437 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1447:12 204s | 204s 1447 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1542:12 204s | 204s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1559:12 204s | 204s 1559 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1574:12 204s | 204s 1574 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1589:12 204s | 204s 1589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1601:12 204s | 204s 1601 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1613:12 204s | 204s 1613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1630:12 204s | 204s 1630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1642:12 204s | 204s 1642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1655:12 204s | 204s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1669:12 204s | 204s 1669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1687:12 204s | 204s 1687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1702:12 204s | 204s 1702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1721:12 204s | 204s 1721 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1737:12 204s | 204s 1737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1753:12 204s | 204s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1767:12 204s | 204s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1781:12 204s | 204s 1781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1790:12 204s | 204s 1790 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1800:12 204s | 204s 1800 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1811:12 204s | 204s 1811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1859:12 204s | 204s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1872:12 204s | 204s 1872 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1884:12 204s | 204s 1884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1907:12 204s | 204s 1907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1925:12 204s | 204s 1925 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1948:12 204s | 204s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1959:12 204s | 204s 1959 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1970:12 204s | 204s 1970 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1982:12 204s | 204s 1982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2000:12 204s | 204s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2011:12 204s | 204s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2101:12 204s | 204s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2112:12 204s | 204s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2125:12 204s | 204s 2125 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2135:12 204s | 204s 2135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2145:12 204s | 204s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2156:12 204s | 204s 2156 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2167:12 204s | 204s 2167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2179:12 204s | 204s 2179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2191:12 204s | 204s 2191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2201:12 204s | 204s 2201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2212:12 204s | 204s 2212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2225:12 204s | 204s 2225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2236:12 204s | 204s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2247:12 204s | 204s 2247 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2259:12 204s | 204s 2259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2269:12 204s | 204s 2269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2279:12 204s | 204s 2279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2298:12 204s | 204s 2298 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2308:12 204s | 204s 2308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2319:12 204s | 204s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2330:12 204s | 204s 2330 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2342:12 204s | 204s 2342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2355:12 204s | 204s 2355 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2373:12 204s | 204s 2373 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2385:12 204s | 204s 2385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2400:12 204s | 204s 2400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2419:12 204s | 204s 2419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2448:12 204s | 204s 2448 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2460:12 204s | 204s 2460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2474:12 204s | 204s 2474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2509:12 204s | 204s 2509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2524:12 204s | 204s 2524 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2535:12 204s | 204s 2535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2547:12 204s | 204s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2563:12 204s | 204s 2563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2648:12 204s | 204s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2660:12 204s | 204s 2660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2676:12 204s | 204s 2676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2686:12 204s | 204s 2686 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2696:12 204s | 204s 2696 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2705:12 204s | 204s 2705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2714:12 204s | 204s 2714 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2723:12 204s | 204s 2723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2737:12 204s | 204s 2737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2755:12 204s | 204s 2755 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2765:12 204s | 204s 2765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2775:12 204s | 204s 2775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2787:12 204s | 204s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2799:12 204s | 204s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2809:12 204s | 204s 2809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2819:12 204s | 204s 2819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2829:12 204s | 204s 2829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2852:12 204s | 204s 2852 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2861:12 204s | 204s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2871:12 204s | 204s 2871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2880:12 204s | 204s 2880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2891:12 204s | 204s 2891 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2902:12 204s | 204s 2902 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2935:12 204s | 204s 2935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2945:12 204s | 204s 2945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2957:12 204s | 204s 2957 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2966:12 204s | 204s 2966 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2975:12 204s | 204s 2975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2987:12 204s | 204s 2987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:3011:12 204s | 204s 3011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:3021:12 204s | 204s 3021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:590:23 204s | 204s 590 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1199:19 204s | 204s 1199 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1372:19 204s | 204s 1372 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:1536:19 204s | 204s 1536 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2095:19 204s | 204s 2095 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2503:19 204s | 204s 2503 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/gen/debug.rs:2642:19 204s | 204s 2642 | #[cfg(syn_no_non_exhaustive)] 204s | ^^^^^^^^^^^^^^^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1065:12 204s | 204s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1072:12 204s | 204s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1083:12 204s | 204s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1090:12 204s | 204s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1100:12 204s | 204s 1100 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1116:12 204s | 204s 1116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1126:12 204s | 204s 1126 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1291:12 204s | 204s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1299:12 204s | 204s 1299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1303:12 204s | 204s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/parse.rs:1311:12 204s | 204s 1311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/reserved.rs:29:12 204s | 204s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: unexpected `cfg` condition name: `doc_cfg` 204s --> /tmp/tmp.DWgKmka312/registry/syn-1.0.109/src/reserved.rs:39:12 204s | 204s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 204s | ^^^^^^^ 204s | 204s = help: consider using a Cargo feature instead 204s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 204s [lints.rust] 204s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 204s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 204s = note: see for more information about checking conditional configuration 204s 204s warning: `wait-timeout` (lib) generated 3 warnings (1 duplicate) 204s Compiling thiserror v1.0.69 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.DWgKmka312/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.DWgKmka312/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --cap-lints warn` 204s Compiling bit-vec v0.8.0 204s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/bit-vec-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/bit-vec-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.DWgKmka312/registry/bit-vec-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=f5a472a8e3d383f4 -C extra-filename=-f5a472a8e3d383f4 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: unexpected `cfg` condition value: `borsh` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:102:7 205s | 205s 102 | #[cfg(feature = "borsh")] 205s | ^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `borsh` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s = note: `#[warn(unexpected_cfgs)]` on by default 205s 205s warning: unexpected `cfg` condition value: `miniserde` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:104:7 205s | 205s 104 | #[cfg(feature = "miniserde")] 205s | ^^^^^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `miniserde` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: unexpected `cfg` condition value: `nanoserde` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:106:7 205s | 205s 106 | #[cfg(feature = "nanoserde")] 205s | ^^^^^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: unexpected `cfg` condition value: `nanoserde` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:108:7 205s | 205s 108 | #[cfg(feature = "nanoserde")] 205s | ^^^^^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: unexpected `cfg` condition value: `borsh` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:238:5 205s | 205s 238 | feature = "borsh", 205s | ^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `borsh` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: unexpected `cfg` condition value: `miniserde` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:242:5 205s | 205s 242 | feature = "miniserde", 205s | ^^^^^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `miniserde` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: unexpected `cfg` condition value: `nanoserde` 205s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:246:5 205s | 205s 246 | feature = "nanoserde", 205s | ^^^^^^^^^^^^^^^^^^^^^ 205s | 205s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 205s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 205s = note: see for more information about checking conditional configuration 205s 205s warning: `bit-vec` (lib) generated 8 warnings (1 duplicate) 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 205s 1, 2 or 3 byte search and single substring search. 205s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.DWgKmka312/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `memchr` (lib) generated 1 warning (1 duplicate) 205s Compiling minimal-lexical v0.2.1 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.DWgKmka312/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=061c55d7bafd6059 -C extra-filename=-061c55d7bafd6059 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `minimal-lexical` (lib) generated 1 warning (1 duplicate) 205s Compiling quick-error v2.0.1 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets :Colin Kiegel ' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write. 205s ' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/quick-error' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-error CARGO_PKG_README='' CARGO_PKG_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name quick_error --edition=2018 /tmp/tmp.DWgKmka312/registry/quick-error-2.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=78f4ccd4ae208433 -C extra-filename=-78f4ccd4ae208433 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `quick-error` (lib) generated 1 warning (1 duplicate) 205s Compiling fixedbitset v0.4.2 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.DWgKmka312/registry/fixedbitset-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=4f27d8f507162a0c -C extra-filename=-4f27d8f507162a0c --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 205s warning: `fixedbitset` (lib) generated 1 warning (1 duplicate) 205s Compiling petgraph v0.6.4 205s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.DWgKmka312/registry/petgraph-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="graphmap"' --cfg 'feature="matrix_graph"' --cfg 'feature="stable_graph"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=11faea72e600ec28 -C extra-filename=-11faea72e600ec28 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern fixedbitset=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libfixedbitset-4f27d8f507162a0c.rmeta --extern indexmap=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 206s warning: unexpected `cfg` condition value: `quickcheck` 206s --> /usr/share/cargo/registry/petgraph-0.6.4/src/lib.rs:149:7 206s | 206s 149 | #[cfg(feature = "quickcheck")] 206s | ^^^^^^^^^^^^^^^^^^^^^^ 206s | 206s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 206s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 206s = note: see for more information about checking conditional configuration 206s = note: `#[warn(unexpected_cfgs)]` on by default 206s 206s warning: use of deprecated method `indexmap::IndexMap::::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior. 206s --> /usr/share/cargo/registry/petgraph-0.6.4/src/graphmap.rs:370:33 206s | 206s 370 | let weight = self.edges.remove(&Self::edge_key(a, b)); 206s | ^^^^^^ 206s | 206s = note: `#[warn(deprecated)]` on by default 206s 206s warning: method `node_bound_with_dummy` is never used 206s --> /usr/share/cargo/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 206s | 206s 106 | trait WithDummy: NodeIndexable { 206s | --------- method in this trait 206s 107 | fn dummy_idx(&self) -> usize; 206s 108 | fn node_bound_with_dummy(&self) -> usize; 206s | ^^^^^^^^^^^^^^^^^^^^^ 206s | 206s = note: `#[warn(dead_code)]` on by default 206s 206s warning: field `first_error` is never read 206s --> /usr/share/cargo/registry/petgraph-0.6.4/src/csr.rs:134:5 206s | 206s 133 | pub struct EdgesNotSorted { 206s | -------------- field in this struct 206s 134 | first_error: (usize, usize), 206s | ^^^^^^^^^^^ 206s | 206s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 206s 207s warning: `petgraph` (lib) generated 5 warnings (1 duplicate) 207s Compiling rusty-fork v0.3.0 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rusty_fork CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rusty-fork-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rusty-fork-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Cross-platform library for running Rust tests in sub-processes using a 207s fork-like interface. 207s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty-fork CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/altsysrq/rusty-fork' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name rusty_fork --edition=2018 /tmp/tmp.DWgKmka312/registry/rusty-fork-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="timeout"' --cfg 'feature="wait-timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "timeout", "wait-timeout"))' -C metadata=50649851fa84c472 -C extra-filename=-50649851fa84c472 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern fnv=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern quick_error=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libquick_error-78f4ccd4ae208433.rmeta --extern tempfile=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern wait_timeout=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwait_timeout-c8041ffbea216b96.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: `rusty-fork` (lib) generated 1 warning (1 duplicate) 207s Compiling nom v7.1.3 207s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.DWgKmka312/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=40d655e2fb328781 -C extra-filename=-40d655e2fb328781 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern memchr=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern minimal_lexical=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libminimal_lexical-061c55d7bafd6059.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 207s warning: unexpected `cfg` condition value: `cargo-clippy` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:375:13 207s | 207s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 207s | ^^^^^^^^^^^^^^^^^^^^^^^^ 207s | 207s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 207s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 207s = note: see for more information about checking conditional configuration 207s = note: `#[warn(unexpected_cfgs)]` on by default 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:379:12 207s | 207s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = 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` 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:391:12 207s | 207s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:418:14 207s | 207s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unused import: `self::str::*` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:439:9 207s | 207s 439 | pub use self::str::*; 207s | ^^^^^^^^^^^^ 207s | 207s = note: `#[warn(unused_imports)]` on by default 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:49:12 207s | 207s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:96:12 207s | 207s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:340:12 207s | 207s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:357:12 207s | 207s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:374:12 207s | 207s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:392:12 207s | 207s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:409:12 207s | 207s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 207s warning: unexpected `cfg` condition name: `nightly` 207s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:430:12 207s | 207s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 207s | ^^^^^^^ 207s | 207s = help: consider using a Cargo feature instead 207s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 207s [lints.rust] 207s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 207s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 207s = note: see for more information about checking conditional configuration 207s 209s warning: `nom` (lib) generated 14 warnings (1 duplicate) 209s Compiling bit-set v0.8.0 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/bit-set-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/bit-set-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.DWgKmka312/registry/bit-set-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=89b3c1c57b5a03ce -C extra-filename=-89b3c1c57b5a03ce --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bit_vec=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 209s warning: `bit-set` (lib) generated 1 warning (1 duplicate) 209s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 209s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 209s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 209s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 209s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 209s Compiling wayland-protocols v0.31.2 209s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-protocols-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-protocols-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the officials wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wayland_protocols --edition=2021 /tmp/tmp.DWgKmka312/registry/wayland-protocols-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "staging", "unstable", "wayland-client", "wayland-server"))' -C metadata=0c0ebf22363a97c4 -C extra-filename=-0c0ebf22363a97c4 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_client=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rmeta --extern wayland_scanner=/tmp/tmp.DWgKmka312/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: `syn` (lib) generated 1851 warnings (270 duplicates) 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_PROCESS=1 CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/debug/deps:/tmp/tmp.DWgKmka312/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.DWgKmka312/target/debug/build/nix-18c9c6ab59c87315/build-script-build` 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 210s [nix 0.29.0] cargo:rustc-cfg=linux 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 210s [nix 0.29.0] cargo:rustc-cfg=linux_android 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 210s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 210s Compiling rand v0.8.5 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 210s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.DWgKmka312/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=ef125e0fa8f0a0b9 -C extra-filename=-ef125e0fa8f0a0b9 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_core=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 210s | 210s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s = note: `#[warn(unexpected_cfgs)]` on by default 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 210s | 210s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 210s | ^^^^^^^ 210s | 210s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 210s | 210s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `features` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 210s | 210s 162 | #[cfg(features = "nightly")] 210s | ^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: see for more information about checking conditional configuration 210s help: there is a config with a similar name and value 210s | 210s 162 | #[cfg(feature = "nightly")] 210s | ~~~~~~~ 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 210s | 210s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 210s | 210s 156 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 210s | 210s 158 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 210s | 210s 160 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 210s | 210s 162 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 210s | 210s 165 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 210s | 210s 167 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 210s | 210s 169 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 210s | 210s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 210s | 210s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 210s | 210s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 210s | 210s 112 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 210s | 210s 142 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 210s | 210s 144 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 210s | 210s 146 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 210s | 210s 148 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 210s | 210s 150 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 210s | 210s 152 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 210s | 210s 155 | feature = "simd_support", 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 210s | 210s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 210s | 210s 144 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `std` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 210s | 210s 235 | #[cfg(not(std))] 210s | ^^^ help: found config with similar value: `feature = "std"` 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 210s | 210s 363 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 210s | 210s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 210s | 210s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 210s | 210s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 210s | 210s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 210s | 210s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 210s | 210s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 210s | 210s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 210s | ^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `std` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 210s | 210s 291 | #[cfg(not(std))] 210s | ^^^ help: found config with similar value: `feature = "std"` 210s ... 210s 359 | scalar_float_impl!(f32, u32); 210s | ---------------------------- in this macro invocation 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 210s warning: unexpected `cfg` condition name: `std` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 210s | 210s 291 | #[cfg(not(std))] 210s | ^^^ help: found config with similar value: `feature = "std"` 210s ... 210s 360 | scalar_float_impl!(f64, u64); 210s | ---------------------------- in this macro invocation 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 210s | 210s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 210s | 210s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 210s | 210s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 210s | 210s 572 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 210s | 210s 679 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 210s | 210s 687 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 210s | 210s 696 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 210s | 210s 706 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 210s | 210s 1001 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 210s | 210s 1003 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 210s | 210s 1005 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 210s | 210s 1007 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 210s | 210s 1010 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 210s | 210s 1012 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition value: `simd_support` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 210s | 210s 1014 | #[cfg(feature = "simd_support")] 210s | ^^^^^^^^^^^^^^^^^^^^^^^^ 210s | 210s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 210s = help: consider adding `simd_support` as a feature in `Cargo.toml` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 210s | 210s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 210s | 210s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 210s | 210s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 210s | 210s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 210s | 210s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 210s | 210s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 210s | 210s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 210s | 210s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 210s | 210s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 210s | 210s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: unexpected `cfg` condition name: `doc_cfg` 210s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 210s | 210s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 210s | ^^^^^^^ 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s 210s warning: trait `Float` is never used 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 210s | 210s 238 | pub(crate) trait Float: Sized { 210s | ^^^^^ 210s | 210s = note: `#[warn(dead_code)]` on by default 210s 210s warning: associated items `lanes`, `extract`, and `replace` are never used 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 210s | 210s 245 | pub(crate) trait FloatAsSIMD: Sized { 210s | ----------- associated items in this trait 210s 246 | #[inline(always)] 210s 247 | fn lanes() -> usize { 210s | ^^^^^ 210s ... 210s 255 | fn extract(self, index: usize) -> Self { 210s | ^^^^^^^ 210s ... 210s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 210s | ^^^^^^^ 210s 210s warning: method `all` is never used 210s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 210s | 210s 266 | pub(crate) trait BoolAsSIMD: Sized { 210s | ---------- method in this trait 210s 267 | fn any(self) -> bool; 210s 268 | fn all(self) -> bool; 210s | ^^^ 210s 210s warning: `rand` (lib) generated 66 warnings (1 duplicate) 210s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.DWgKmka312/registry/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=0a13ea327a69f660 -C extra-filename=-0a13ea327a69f660 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 210s warning: unexpected `cfg` condition name: `has_total_cmp` 210s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 210s | 210s 2305 | #[cfg(has_total_cmp)] 210s | ^^^^^^^^^^^^^ 210s ... 210s 2325 | totalorder_impl!(f64, i64, u64, 64); 210s | ----------------------------------- in this macro invocation 210s | 210s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: `#[warn(unexpected_cfgs)]` on by default 210s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 210s warning: unexpected `cfg` condition name: `has_total_cmp` 210s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 210s | 210s 2311 | #[cfg(not(has_total_cmp))] 210s | ^^^^^^^^^^^^^ 210s ... 210s 2325 | totalorder_impl!(f64, i64, u64, 64); 210s | ----------------------------------- in this macro invocation 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 210s warning: unexpected `cfg` condition name: `has_total_cmp` 210s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 210s | 210s 2305 | #[cfg(has_total_cmp)] 210s | ^^^^^^^^^^^^^ 210s ... 210s 2326 | totalorder_impl!(f32, i32, u32, 32); 210s | ----------------------------------- in this macro invocation 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 210s warning: unexpected `cfg` condition name: `has_total_cmp` 210s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 210s | 210s 2311 | #[cfg(not(has_total_cmp))] 210s | ^^^^^^^^^^^^^ 210s ... 210s 2326 | totalorder_impl!(f32, i32, u32, 32); 210s | ----------------------------------- in this macro invocation 210s | 210s = help: consider using a Cargo feature instead 210s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 210s [lints.rust] 210s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 210s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 210s = note: see for more information about checking conditional configuration 210s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 210s 211s warning: `wayland-protocols` (lib) generated 1 warning (1 duplicate) 211s Compiling rand_xorshift v0.3.0 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/rand_xorshift-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/rand_xorshift-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator 211s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rngs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name rand_xorshift --edition=2018 /tmp/tmp.DWgKmka312/registry/rand_xorshift-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "serde1"))' -C metadata=6f9a9169531a5b9a -C extra-filename=-6f9a9169531a5b9a --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern rand_core=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 211s warning: `rand_xorshift` (lib) generated 1 warning (1 duplicate) 211s Compiling thiserror-impl v1.0.69 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.DWgKmka312/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.DWgKmka312/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 211s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 211s Compiling regex-syntax v0.8.5 211s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.DWgKmka312/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 212s Compiling lazy_static v1.5.0 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.DWgKmka312/registry/lazy_static-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 212s warning: elided lifetime has a name 212s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 212s | 212s 26 | pub fn get(&'static self, f: F) -> &T 212s | ^ this elided lifetime gets resolved as `'static` 212s | 212s = note: `#[warn(elided_named_lifetimes)]` on by default 212s help: consider specifying it explicitly 212s | 212s 26 | pub fn get(&'static self, f: F) -> &'static T 212s | +++++++ 212s 212s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 212s Compiling unarray v0.1.4 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unarray CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/unarray-0.1.4 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/unarray-0.1.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for working with uninitialized arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unarray CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cameron1024/unarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name unarray --edition=2018 /tmp/tmp.DWgKmka312/registry/unarray-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4bc01abf17def2c3 -C extra-filename=-4bc01abf17def2c3 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 212s warning: `unarray` (lib) generated 1 warning (1 duplicate) 212s Compiling proptest v1.6.0 212s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/proptest-1.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/proptest-1.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Hypothesis-like property-based testing and shrinking. 212s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.6.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name proptest --edition=2018 /tmp/tmp.DWgKmka312/registry/proptest-1.6.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="bit-set"' --cfg 'feature="default"' --cfg 'feature="fork"' --cfg 'feature="lazy_static"' --cfg 'feature="regex-syntax"' --cfg 'feature="rusty-fork"' --cfg 'feature="std"' --cfg 'feature="tempfile"' --cfg 'feature="timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic64bit", "bit-set", "default", "default-code-coverage", "fork", "handle-panics", "lazy_static", "no_std", "regex-syntax", "rusty-fork", "std", "tempfile", "timeout", "unstable"))' -C metadata=4bfa1843376ba424 -C extra-filename=-4bfa1843376ba424 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bit_set=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbit_set-89b3c1c57b5a03ce.rmeta --extern bit_vec=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern lazy_static=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern num_traits=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-0a13ea327a69f660.rmeta --extern rand=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand-ef125e0fa8f0a0b9.rmeta --extern rand_chacha=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_xorshift=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librand_xorshift-6f9a9169531a5b9a.rmeta --extern regex_syntax=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --extern rusty_fork=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/librusty_fork-50649851fa84c472.rmeta --extern tempfile=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern unarray=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libunarray-4bc01abf17def2c3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 213s warning: unexpected `cfg` condition value: `attr-macro` 213s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:91:7 213s | 213s 91 | #[cfg(feature = "attr-macro")] 213s | ^^^^^^^^^^^^^^^^^^^^^^ 213s | 213s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 213s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 213s = note: see for more information about checking conditional configuration 213s = note: `#[warn(unexpected_cfgs)]` on by default 213s 213s warning: unexpected `cfg` condition value: `attr-macro` 213s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:94:7 213s | 213s 94 | #[cfg(feature = "attr-macro")] 213s | ^^^^^^^^^^^^^^^^^^^^^^ 213s | 213s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 213s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 213s = note: see for more information about checking conditional configuration 213s 213s warning: unexpected `cfg` condition value: `hardware-rng` 213s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:487:9 213s | 213s 487 | feature = "hardware-rng" 213s | ^^^^^^^^^^^^^^^^^^^^^^^^ 213s | 213s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 213s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 213s = note: see for more information about checking conditional configuration 213s 213s warning: unexpected `cfg` condition value: `hardware-rng` 213s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:456:13 213s | 213s 456 | feature = "hardware-rng" 213s | ^^^^^^^^^^^^^^^^^^^^^^^^ 213s | 213s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 213s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 213s = note: see for more information about checking conditional configuration 213s 214s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 214s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.DWgKmka312/registry/thiserror-1.0.69/src/lib.rs --error-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=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern thiserror_impl=/tmp/tmp.DWgKmka312/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 214s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 214s Compiling wayland-protocols-wlr v0.2.0 214s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols_wlr CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/wayland-protocols-wlr-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/wayland-protocols-wlr-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the WLR wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols-wlr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wayland_protocols_wlr --edition=2018 /tmp/tmp.DWgKmka312/registry/wayland-protocols-wlr-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "wayland-client", "wayland-server"))' -C metadata=013a973e583c7486 -C extra-filename=-013a973e583c7486 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rmeta --extern wayland_client=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rmeta --extern wayland_protocols=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-0c0ebf22363a97c4.rmeta --extern wayland_scanner=/tmp/tmp.DWgKmka312/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 214s warning: struct `NoopFailurePersistence` is never constructed 214s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/failure_persistence/noop.rs:19:8 214s | 214s 19 | struct NoopFailurePersistence; 214s | ^^^^^^^^^^^^^^^^^^^^^^ 214s | 214s = note: `NoopFailurePersistence` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis 214s = note: `#[warn(dead_code)]` on by default 214s 216s warning: `wayland-protocols-wlr` (lib) generated 1 warning (1 duplicate) 216s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps OUT_DIR=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out rustc --crate-name nix --edition=2021 /tmp/tmp.DWgKmka312/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=0930f78ed5a2e234 -C extra-filename=-0930f78ed5a2e234 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern bitflags=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 217s warning: `proptest` (lib) generated 6 warnings (1 duplicate) 217s Compiling derive-new v0.5.8 217s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=derive_new CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/derive-new-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/derive-new-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Nick Cameron ' CARGO_PKG_DESCRIPTION='`#[derive(new)]` implements simple constructor functions for structs and enums.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=derive-new CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nrc/derive-new' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name derive_new --edition=2015 /tmp/tmp.DWgKmka312/registry/derive-new-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d36da1d6c0ebb951 -C extra-filename=-d36da1d6c0ebb951 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.DWgKmka312/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 217s Compiling proptest-derive v0.4.0 217s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest_derive CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/proptest-derive-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/proptest-derive-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Mazdak Farrokhzad ' CARGO_PKG_DESCRIPTION='Custom-derive for the Arbitrary trait of proptest. 217s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest-derive/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest-derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name proptest_derive --edition=2018 /tmp/tmp.DWgKmka312/registry/proptest-derive-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6474c4970bc8d659 -C extra-filename=-6474c4970bc8d659 --out-dir /tmp/tmp.DWgKmka312/target/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern proc_macro2=/tmp/tmp.DWgKmka312/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.DWgKmka312/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.DWgKmka312/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 218s warning: `nix` (lib) generated 1 warning (1 duplicate) 218s Compiling tree_magic_mini v3.1.6 218s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tree_magic_mini CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/tree_magic_mini-3.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/tree_magic_mini-3.1.6/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Allison Hancock ' CARGO_PKG_DESCRIPTION='Determines the MIME type of a file by traversing a filetype tree.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tree_magic_mini CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/tree_magic/' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.1.6 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name tree_magic_mini --edition=2021 /tmp/tmp.DWgKmka312/registry/tree_magic_mini-3.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("with-gpl-data"))' -C metadata=242d3fc89e043ebe -C extra-filename=-242d3fc89e043ebe --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern fnv=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern memchr=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern nom=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libnom-40d655e2fb328781.rmeta --extern once_cell=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern petgraph=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libpetgraph-11faea72e600ec28.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 219s warning: `tree_magic_mini` (lib) generated 1 warning (1 duplicate) 219s Compiling os_pipe v1.2.1 219s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/tmp/tmp.DWgKmka312/registry/os_pipe-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.DWgKmka312/registry/os_pipe-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Jack O'\''Connor' CARGO_PKG_DESCRIPTION='a cross-platform library for opening OS pipes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=os_pipe CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name os_pipe --edition=2021 /tmp/tmp.DWgKmka312/registry/os_pipe-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="io_safety"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("io_safety"))' -C metadata=3c879989e1f7b2c1 -C extra-filename=-3c879989e1f7b2c1 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 219s warning: `os_pipe` (lib) generated 1 warning (1 duplicate) 219s Compiling wl-clipboard-rs v0.8.0 (/usr/share/cargo/registry/wl-clipboard-rs-0.8.0) 219s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wl_clipboard_rs CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.DWgKmka312/target/debug/deps rustc --crate-name wl_clipboard_rs --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="dlopen"' --cfg 'feature="native_lib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("dlopen", "native_lib"))' -C metadata=12398c10375d60a0 -C extra-filename=-12398c10375d60a0 --out-dir /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.DWgKmka312/target/debug/deps --extern derive_new=/tmp/tmp.DWgKmka312/target/debug/deps/libderive_new-d36da1d6c0ebb951.so --extern libc=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rlib --extern log=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern nix=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libnix-0930f78ed5a2e234.rlib --extern os_pipe=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libos_pipe-3c879989e1f7b2c1.rlib --extern proptest=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libproptest-4bfa1843376ba424.rlib --extern proptest_derive=/tmp/tmp.DWgKmka312/target/debug/deps/libproptest_derive-6474c4970bc8d659.so --extern tempfile=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rlib --extern thiserror=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib --extern tree_magic_mini=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libtree_magic_mini-242d3fc89e043ebe.rlib --extern wayland_backend=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-7023ae197d2e1d75.rlib --extern wayland_client=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-aaaacc345f456d89.rlib --extern wayland_protocols=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-0c0ebf22363a97c4.rlib --extern wayland_protocols_wlr=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols_wlr-013a973e583c7486.rlib --extern wayland_server=/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-d1a3211630d4b2b9.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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.DWgKmka312/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 220s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 220s --> src/tests/mod.rs:9:5 220s | 220s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 220s | ^^^^^^^^^^^^^ 220s | 220s = note: `#[warn(deprecated)]` on by default 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 220s --> src/tests/mod.rs:9:20 220s | 220s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 220s | ^^^^^^^^^ 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 220s --> src/tests/mod.rs:9:31 220s | 220s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 220s | ^^^^^^^^^^ 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 220s --> src/tests/mod.rs:43:23 220s | 220s 43 | let poll_fd = epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap(); 220s | ^^^^^^^^^^^^^ 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 220s --> src/tests/mod.rs:47:9 220s | 220s 47 | epoll_ctl( 220s | ^^^^^^^^^ 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 220s --> src/tests/mod.rs:55:9 220s | 220s 55 | epoll_ctl( 220s | ^^^^^^^^^ 220s 220s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 220s --> src/tests/mod.rs:92:27 220s | 220s 92 | let nevents = epoll_wait(self.poll_fd.as_raw_fd(), &mut events, -1).unwrap(); 220s | ^^^^^^^^^^ 220s 220s warning: this function depends on never type fallback being `()` 220s --> src/copy.rs:554:5 220s | 220s 554 | pub fn serve(mut self) -> Result<(), Error> { 220s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 220s | 220s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in Rust 2024 and in a future release in all editions! 220s = note: for more information, see issue #123748 220s = help: specify the types explicitly 220s note: in edition 2024, the requirement `!: FromIterator<()>` will fail 220s --> src/copy.rs:591:36 220s | 220s 591 | let result: Result<_, _> = results.into_iter().collect(); 220s | ^^^^^^^^^^^^^^^^^^^ 220s = note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default 220s help: use `()` annotations to avoid fallback changes 220s | 220s 591 | let result: Result<(), _> = results.into_iter().collect(); 220s | ~~ 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/tests/state.rs:37:24 220s | 220s 37 | #[derive(Debug, Clone, Arbitrary)] 220s | ^-------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_OfferInfo` 220s 38 | pub enum OfferInfo { 220s | --------- `OfferInfo` is not local 220s | 220s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: `#[warn(non_local_definitions)]` on by default 220s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/tests/state.rs:73:33 220s | 220s 73 | #[derive(Debug, Clone, Default, Arbitrary)] 220s | ^-------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_SeatInfo` 220s 74 | pub struct SeatInfo { 220s | -------- `SeatInfo` is not local 220s | 220s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/tests/state.rs:79:33 220s | 220s 79 | #[derive(Debug, Clone, Default, Arbitrary)] 220s | ^-------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_State` 220s 80 | pub struct State { 220s | ----- `State` is not local 220s | 220s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/copy.rs:36:25 220s | 220s 36 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 220s | ^------------------------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 220s 37 | pub enum ClipboardType { 220s | ------------- `ClipboardType` is not local 220s | 220s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/copy.rs:55:25 220s | 220s 55 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 220s | ^------------------------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_MimeType` 220s 56 | pub enum MimeType { 220s | -------- `MimeType` is not local 220s | 220s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/copy.rs:68:25 220s | 220s 68 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 220s | ^------------------------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_Source` 220s 69 | pub enum Source { 220s | ------ `Source` is not local 220s | 220s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 220s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 220s --> src/paste.rs:28:25 220s | 220s 28 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 220s | ^------------------------- 220s | | 220s | `Arbitrary` is not local 220s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 220s 29 | pub enum ClipboardType { 220s | ------------- `ClipboardType` is not local 220s | 220s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 220s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 220s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 220s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 220s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 220s 223s warning: `wl-clipboard-rs` (lib test) generated 16 warnings (1 duplicate) (run `cargo fix --lib -p wl-clipboard-rs --tests` to apply 1 suggestion) 223s Finished `test` profile [unoptimized + debuginfo] target(s) in 34.98s 223s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.DWgKmka312/target/s390x-unknown-linux-gnu/debug/deps/wl_clipboard_rs-12398c10375d60a0` 223s 223s running 23 tests 223s test tests::copy::clear_test ... ok 223s test tests::copy::copy_large ... ok 223s test tests::copy::copy_multi_no_additional_text_mime_types_test ... ok 223s test tests::copy::copy_multi_test ... ok 223s test tests::copy::copy_test ... ok 224s test tests::paste::get_contents_randomized ... ok 224s test tests::paste::get_contents_test ... ok 224s test tests::paste::get_contents_wrong_mime_type ... ok 224s test tests::paste::get_mime_types_empty_clipboard ... ok 224s test tests::paste::get_mime_types_no_data_control ... ok 224s test tests::paste::get_mime_types_no_data_control_2 ... ok 224s test tests::paste::get_mime_types_no_seats ... ok 224s test tests::paste::get_mime_types_primary ... ok 225s test tests::paste::get_mime_types_randomized ... ok 225s test tests::paste::get_mime_types_specific_seat ... ok 225s test tests::paste::get_mime_types_test ... ok 225s test tests::utils::is_primary_selection_supported_data_control_v1 ... ok 225s test tests::utils::is_primary_selection_supported_no_data_control ... ok 225s test tests::utils::is_primary_selection_supported_no_seats ... ok 225s test tests::utils::is_primary_selection_supported_primary_selection_unsupported ... ok 225s test tests::utils::is_primary_selection_supported_test ... ok 225s test tests::utils::supports_v2_seats ... ok 225s test tests::copy::copy_randomized ... ok 225s 225s test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.57s 225s 225s /tmp/autopkgtest.4cJX46/wrapper.sh: checking for leaked background processes... 225s /tmp/autopkgtest.4cJX46/wrapper.sh: waiting for tee/cat subprocesses... 225s /tmp/autopkgtest.4cJX46/wrapper.sh: cleaning up... 225s /tmp/autopkgtest.4cJX46/wrapper.sh: Exit status: 0 225s autopkgtest: DBG: testbed command exited with code 0 225s autopkgtest [07:35:13]: test librust-wl-clipboard-rs-dev:dlopen: -----------------------] 225s autopkgtest: DBG: testbed executing test finished with exit status 0 225s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adlopen-stdout /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adlopen-stdout 226s autopkgtest: DBG: got reply from testbed: ok 226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adlopen-stderr /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Adlopen-stderr 226s autopkgtest: DBG: got reply from testbed: ok 226s librust-wl-clipboard-rs-dev:dlopen PASS 226s autopkgtest [07:35:14]: test librust-wl-clipboard-rs-dev:dlopen: - - - - - - - - - - results - - - - - - - - - - 226s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Adlopen-artifacts/ /tmp/autopkgtest-work.oh9g3vy4/out/artifacts/ 227s autopkgtest: DBG: got reply from testbed: ok 227s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:dlopen-artifacts', '/tmp/autopkgtest.4cJX46/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 227s autopkgtest: DBG: testbed command exited with code 0 227s autopkgtest [07:35:15]: test librust-wl-clipboard-rs-dev:native_lib: preparing testbed 227s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'], deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 227s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 227s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 227s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev 227s autopkgtest: DBG: can use apt-get on testbed: True 227s 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-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 227s Reading package lists... 227s Building dependency tree... 227s Reading state information... 227s Starting pkgProblemResolver with broken count: 0 227s Starting 2 pkgProblemResolver with broken count: 0 227s Done 227s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 227s autopkgtest: DBG: testbed command exited with code 0 227s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wl-clipboard-rs-dev'], kind short, sout pipe, serr pipe, env [] 228s autopkgtest: DBG: testbed command exited with code 0 228s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-packages.all"], kind short, sout raw, serr pipe, env [] 228s autopkgtest: DBG: testbed command exited with code 0 228s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Anative_lib-packages.all /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Anative_lib-packages.all 228s autopkgtest: DBG: got reply from testbed: ok 228s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4cJX46/build.9ba/src'], kind short, sout raw, serr raw, env [] 228s autopkgtest: DBG: testbed command exited with code 0 228s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4cJX46/build.9ba/src already exists 228s autopkgtest [07:35:16]: test librust-wl-clipboard-rs-dev:native_lib: /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features native_lib 228s autopkgtest [07:35:16]: test librust-wl-clipboard-rs-dev:native_lib: [----------------------- 228s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4cJX46/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-artifacts --chdir=/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stderr --stdout=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stdout --tmp=/tmp/autopkgtest.4cJX46/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 wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features native_lib'"], kind test, sout raw, serr raw, env [] 228s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-artifacts 228s /tmp/autopkgtest.4cJX46/wrapper.sh: changing to directory: /tmp/autopkgtest.4cJX46/build.9ba/src 228s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 228s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 228s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 228s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 228s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: LANG=C.UTF-8 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LANGUAGE 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ADDRESS 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ALL 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_COLLATE 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_CTYPE 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_IDENTIFICATION 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MEASUREMENT 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MESSAGES 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MONETARY 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NAME 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NUMERIC 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_PAPER 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TELEPHONE 228s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TIME 228s /tmp/autopkgtest.4cJX46/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 228s /tmp/autopkgtest.4cJX46/wrapper.sh: pretending to be a login shell 228s /tmp/autopkgtest.4cJX46/wrapper.sh: will write standard error to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stderr 228s /tmp/autopkgtest.4cJX46/wrapper.sh: will write stdout to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stdout 228s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4cJX46/autopkgtest_tmp 228s /tmp/autopkgtest.4cJX46/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 228s /tmp/autopkgtest.4cJX46/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features --features native_lib 228s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.UNIdiMXeOs/out to stdout and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stdout 228s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.UNIdiMXeOs/err to standard error and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-stdout 228s /tmp/autopkgtest.4cJX46/wrapper.sh: writing script pid 11834 to /tmp/autopkgtest_script_pid 228s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 228s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 228s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 228s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.LTEQ5jwnZK/registry/ 228s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 228s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 228s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 228s 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', 'native_lib'],) {} 228s Compiling libc v0.2.169 228s Compiling proc-macro2 v1.0.92 228s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 228s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 228s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 229s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 229s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 229s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 229s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 229s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 229s Compiling unicode-ident v1.0.13 229s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 229s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 229s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 229s [libc 0.2.169] cargo:rerun-if-changed=build.rs 229s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern unicode_ident=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 229s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 229s [libc 0.2.169] cargo:rustc-cfg=freebsd11 229s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 229s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 229s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 229s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 229s warning: unused import: `crate::ntptimeval` 229s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 229s | 229s 5 | use crate::ntptimeval; 229s | ^^^^^^^^^^^^^^^^^ 229s | 229s = note: `#[warn(unused_imports)]` on by default 229s 230s Compiling quote v1.0.37 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 230s Compiling cfg-if v1.0.0 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/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] 230s parameters. Structured like an if-else chain, the first matching branch is the 230s item that gets emitted. 230s ' 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.LTEQ5jwnZK/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.LTEQ5jwnZK/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.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 230s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 230s | 230s = note: this feature is not stably supported; its behavior can change in the future 230s 230s warning: `cfg-if` (lib) generated 1 warning 230s Compiling autocfg v1.1.0 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 230s warning: `libc` (lib) generated 2 warnings (1 duplicate) 230s Compiling bitflags v2.8.0 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 230s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 230s Compiling rustix v0.38.37 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 230s warning: `bitflags` (lib) generated 1 warning (1 duplicate) 230s Compiling errno v0.3.8 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 230s warning: unexpected `cfg` condition value: `bitrig` 230s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 230s | 230s 77 | target_os = "bitrig", 230s | ^^^^^^^^^^^^^^^^^^^^ 230s | 230s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 230s = note: see for more information about checking conditional configuration 230s = note: `#[warn(unexpected_cfgs)]` on by default 230s 230s warning: `errno` (lib) generated 2 warnings (1 duplicate) 230s Compiling linux-raw-sys v0.4.14 230s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 231s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 231s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 231s [rustix 0.38.37] cargo:rustc-cfg=libc 231s [rustix 0.38.37] cargo:rustc-cfg=linux_like 231s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 231s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 231s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 231s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 231s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 231s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 231s Compiling memoffset v0.8.0 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=b637076bbed49000 -C extra-filename=-b637076bbed49000 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/memoffset-b637076bbed49000 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern autocfg=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 231s Compiling syn v2.0.96 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 231s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 231s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c0552d419ea96692 -C extra-filename=-c0552d419ea96692 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 234s Compiling pkg-config v0.3.31 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 234s Cargo build scripts. 234s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 234s warning: unreachable expression 234s --> /tmp/tmp.LTEQ5jwnZK/registry/pkg-config-0.3.31/src/lib.rs:596:9 234s | 234s 592 | return true; 234s | ----------- any code following this expression is unreachable 234s ... 234s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 234s 597 | | // don't use pkg-config if explicitly disabled 234s 598 | | Some(ref val) if val == "0" => false, 234s 599 | | Some(_) => true, 234s ... | 234s 605 | | } 234s 606 | | } 234s | |_________^ unreachable expression 234s | 234s = note: `#[warn(unreachable_code)]` on by default 234s 234s warning: `pkg-config` (lib) generated 1 warning 234s Compiling shlex v1.3.0 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 234s warning: unexpected `cfg` condition name: `manual_codegen_check` 234s --> /tmp/tmp.LTEQ5jwnZK/registry/shlex-1.3.0/src/bytes.rs:353:12 234s | 234s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 234s | ^^^^^^^^^^^^^^^^^^^^ 234s | 234s = 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` 234s = help: consider using a Cargo feature instead 234s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 234s [lints.rust] 234s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 234s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 234s = note: see for more information about checking conditional configuration 234s = note: `#[warn(unexpected_cfgs)]` on by default 234s 234s warning: `shlex` (lib) generated 1 warning 234s Compiling cc v1.1.14 234s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 234s C compiler to compile native C code into a static archive to be linked into Rust 234s code. 234s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern shlex=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 235s warning: `rustix` (lib) generated 1 warning (1 duplicate) 235s Compiling wayland-sys v0.31.6 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6/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="client"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=7e8c87624a88c1fe -C extra-filename=-7e8c87624a88c1fe --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/wayland-sys-7e8c87624a88c1fe -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern pkg_config=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/memoffset-b637076bbed49000/build-script-build` 235s [memoffset 0.8.0] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 235s [memoffset 0.8.0] | 235s [memoffset 0.8.0] = note: this feature is not stably supported; its behavior can change in the future 235s [memoffset 0.8.0] 235s [memoffset 0.8.0] warning: 1 warning emitted 235s [memoffset 0.8.0] 235s [memoffset 0.8.0] cargo:rustc-cfg=tuple_ty 235s [memoffset 0.8.0] cargo:rustc-cfg=allow_clippy 235s [memoffset 0.8.0] cargo:rustc-cfg=maybe_uninit 235s [memoffset 0.8.0] cargo:rustc-cfg=doctests 235s [memoffset 0.8.0] cargo:rustc-cfg=raw_ref_macros 235s [memoffset 0.8.0] cargo:rustc-cfg=stable_const 235s Compiling getrandom v0.2.15 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern cfg_if=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 235s warning: unexpected `cfg` condition value: `js` 235s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 235s | 235s 334 | } else if #[cfg(all(feature = "js", 235s | ^^^^^^^^^^^^^^ 235s | 235s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 235s = help: consider adding `js` as a feature in `Cargo.toml` 235s = note: see for more information about checking conditional configuration 235s = note: `#[warn(unexpected_cfgs)]` on by default 235s 235s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 235s Compiling libloading v0.8.5 235s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libloading CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/libloading-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/libloading-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='Simonas Kazlauskas ' CARGO_PKG_DESCRIPTION='Bindings around the platform'\''s dynamic library loading primitives with greatly improved memory safety.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libloading CARGO_PKG_README=README.mkd CARGO_PKG_REPOSITORY='https://github.com/nagisa/rust_libloading/' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name libloading --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/libloading-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c7408bf7f2c3ff44 -C extra-filename=-c7408bf7f2c3ff44 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern cfg_if=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:39:13 236s | 236s 39 | #![cfg_attr(libloading_docs, feature(doc_cfg))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = 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` 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s = note: requested on the command line with `-W unexpected-cfgs` 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:45:26 236s | 236s 45 | #[cfg(any(unix, windows, libloading_docs))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/lib.rs:49:26 236s | 236s 49 | #[cfg(any(unix, windows, libloading_docs))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:20:17 236s | 236s 20 | #[cfg(any(unix, libloading_docs))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:21:12 236s | 236s 21 | #[cfg_attr(libloading_docs, doc(cfg(unix)))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/mod.rs:25:20 236s | 236s 25 | #[cfg(any(windows, libloading_docs))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:3:11 236s | 236s 3 | #[cfg(all(libloading_docs, not(unix)))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/mod.rs:5:15 236s | 236s 5 | #[cfg(any(not(libloading_docs), unix))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:46:11 236s | 236s 46 | #[cfg(all(libloading_docs, not(unix)))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/os/unix/consts.rs:55:15 236s | 236s 55 | #[cfg(any(not(libloading_docs), unix))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:1:7 236s | 236s 1 | #[cfg(libloading_docs)] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:3:15 236s | 236s 3 | #[cfg(all(not(libloading_docs), unix))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:5:15 236s | 236s 5 | #[cfg(all(not(libloading_docs), windows))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:15:12 236s | 236s 15 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `libloading_docs` 236s --> /usr/share/cargo/registry/libloading-0.8.5/src/safe.rs:197:12 236s | 236s 197 | #[cfg_attr(libloading_docs, doc(cfg(any(unix, windows))))] 236s | ^^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(libloading_docs)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(libloading_docs)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: `libloading` (lib) generated 16 warnings (1 duplicate) 236s Compiling dlib v0.5.2 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=dlib CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/dlib-0.5.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/dlib-0.5.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Helper macros for handling manually loading optional system libraries.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dlib CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/elinorbgr/dlib' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name dlib --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/dlib-0.5.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=71d2b98a05a8f9d2 -C extra-filename=-71d2b98a05a8f9d2 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern libloading=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibloading-c7408bf7f2c3ff44.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s warning: `dlib` (lib) generated 1 warning (1 duplicate) 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memoffset CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Gilad Naaman ' CARGO_PKG_DESCRIPTION='offset_of functionality for Rust structs.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memoffset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Gilnaa/memoffset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/memoffset-b32fed70cf81e31f/out rustc --crate-name memoffset --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/memoffset-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "unstable_const"))' -C metadata=2f432c32070b84ca -C extra-filename=-2f432c32070b84ca --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg tuple_ty --cfg allow_clippy --cfg maybe_uninit --cfg doctests --cfg raw_ref_macros --cfg stable_const` 236s warning: unexpected `cfg` condition name: `stable_const` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:60:41 236s | 236s 60 | all(feature = "unstable_const", not(stable_const)), 236s | ^^^^^^^^^^^^ 236s | 236s = 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` 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s = note: `#[warn(unexpected_cfgs)]` on by default 236s 236s warning: unexpected `cfg` condition name: `doctests` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:66:7 236s | 236s 66 | #[cfg(doctests)] 236s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `doctests` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/lib.rs:69:7 236s | 236s 69 | #[cfg(doctests)] 236s | ^^^^^^^^ help: there is a config with a similar name: `doctest` 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doctests)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doctests)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `raw_ref_macros` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:22:7 236s | 236s 22 | #[cfg(raw_ref_macros)] 236s | ^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `raw_ref_macros` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:30:11 236s | 236s 30 | #[cfg(not(raw_ref_macros))] 236s | ^^^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(raw_ref_macros)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(raw_ref_macros)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:57:7 236s | 236s 57 | #[cfg(allow_clippy)] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:69:11 236s | 236s 69 | #[cfg(not(allow_clippy))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:90:7 236s | 236s 90 | #[cfg(allow_clippy)] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:100:11 236s | 236s 100 | #[cfg(not(allow_clippy))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:125:7 236s | 236s 125 | #[cfg(allow_clippy)] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `allow_clippy` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:141:11 236s | 236s 141 | #[cfg(not(allow_clippy))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(allow_clippy)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(allow_clippy)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `tuple_ty` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/raw_field.rs:183:7 236s | 236s 183 | #[cfg(tuple_ty)] 236s | ^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `maybe_uninit` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:23:7 236s | 236s 23 | #[cfg(maybe_uninit)] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `maybe_uninit` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:37:11 236s | 236s 37 | #[cfg(not(maybe_uninit))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(maybe_uninit)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(maybe_uninit)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `stable_const` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:49:39 236s | 236s 49 | #[cfg(any(feature = "unstable_const", stable_const))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `stable_const` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:61:43 236s | 236s 61 | #[cfg(not(any(feature = "unstable_const", stable_const)))] 236s | ^^^^^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(stable_const)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(stable_const)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: unexpected `cfg` condition name: `tuple_ty` 236s --> /usr/share/cargo/registry/memoffset-0.8.0/src/offset_of.rs:121:7 236s | 236s 121 | #[cfg(tuple_ty)] 236s | ^^^^^^^^ 236s | 236s = help: consider using a Cargo feature instead 236s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 236s [lints.rust] 236s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tuple_ty)'] } 236s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tuple_ty)");` to the top of the `build.rs` 236s = note: see for more information about checking conditional configuration 236s 236s warning: `memoffset` (lib) generated 18 warnings (1 duplicate) 236s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT=1 CARGO_FEATURE_LIBC=1 CARGO_FEATURE_MEMOFFSET=1 CARGO_FEATURE_SERVER=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-d7b16c4d662477d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/wayland-sys-7e8c87624a88c1fe/build-script-build` 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_NO_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=SYSROOT 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 236s [wayland-sys 0.31.6] cargo:rustc-link-lib=wayland-client 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_CLIENT_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_NO_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=SYSROOT 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rustc-link-search=native=/usr/lib/s390x-linux-gnu 236s [wayland-sys 0.31.6] cargo:rustc-link-lib=wayland-server 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=DEB_HOST_GNU_TYPE 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=WAYLAND_SERVER_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_STATIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_ALL_DYNAMIC 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_PATH 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_LIBDIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x-unknown-linux-gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR_s390x_unknown_linux_gnu 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=HOST_PKG_CONFIG_SYSROOT_DIR 236s [wayland-sys 0.31.6] cargo:rerun-if-env-changed=PKG_CONFIG_SYSROOT_DIR 236s Compiling log v0.4.22 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 236s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/log-0.4.22/src/lib.rs --error-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("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 236s warning: `log` (lib) generated 1 warning (1 duplicate) 236s Compiling memchr v2.7.4 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 236s 1, 2 or 3 byte search and single substring search. 236s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 236s Compiling wayland-backend v0.3.8 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=fc16af00f9949b07 -C extra-filename=-fc16af00f9949b07 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/wayland-backend-fc16af00f9949b07 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern cc=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 236s Compiling quick-xml v0.36.1 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern memchr=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 236s warning: unexpected `cfg` condition value: `document-features` 236s --> /tmp/tmp.LTEQ5jwnZK/registry/quick-xml-0.36.1/src/lib.rs:42:5 236s | 236s 42 | feature = "document-features", 236s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 236s | 236s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 236s = help: consider adding `document-features` as a feature in `Cargo.toml` 236s = note: see for more information about checking conditional configuration 236s = note: `#[warn(unexpected_cfgs)]` on by default 236s 236s warning: elided lifetime has a name 236s --> /tmp/tmp.LTEQ5jwnZK/registry/quick-xml-0.36.1/src/writer.rs:146:73 236s | 236s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 236s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 236s | 236s = note: `#[warn(elided_named_lifetimes)]` on by default 236s 236s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_CLIENT_SYSTEM=1 CARGO_FEATURE_SERVER_SYSTEM=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-84cfbe9f928a5535/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/wayland-backend-fc16af00f9949b07/build-script-build` 236s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 236s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-d7b16c4d662477d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="libc"' --cfg 'feature="memoffset"' --cfg 'feature="server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=827d9794dcd644aa -C extra-filename=-827d9794dcd644aa --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern dlib=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libdlib-71d2b98a05a8f9d2.rmeta --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern log=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rmeta --extern memoffset=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libmemoffset-2f432c32070b84ca.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu -l wayland-client -l wayland-server` 237s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 237s Compiling zerocopy-derive v0.7.34 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=421d942aa06bb9ce -C extra-filename=-421d942aa06bb9ce --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 237s warning: `quick-xml` (lib) generated 2 warnings 237s Compiling smallvec v1.13.2 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 237s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 237s Compiling scoped-tls v1.0.1 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=scoped_tls CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/scoped-tls-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/scoped-tls-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Library implementation of the standard library'\''s old `scoped_thread_local'\!'` 237s macro for providing scoped access to thread local storage (TLS) so any type can 237s be stored into TLS. 237s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=scoped-tls CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/scoped-tls' CARGO_PKG_RUST_VERSION=1.59 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.LTEQ5jwnZK/target/debug/deps rustc --crate-name scoped_tls --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/scoped-tls-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=93e06da5b10a2769 -C extra-filename=-93e06da5b10a2769 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 237s warning: `scoped-tls` (lib) generated 1 warning (1 duplicate) 237s Compiling byteorder v1.5.0 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 237s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 237s Compiling downcast-rs v1.2.0 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 237s parameters, associated types, and type constraints. 237s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 237s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 237s Compiling io-lifetimes v2.0.3 237s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 238s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-84cfbe9f928a5535/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client_system"' --cfg 'feature="server_system"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=8b07d04095a99f1a -C extra-filename=-8b07d04095a99f1a --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern downcast_rs=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern scoped_tls=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libscoped_tls-93e06da5b10a2769.rmeta --extern smallvec=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-827d9794dcd644aa.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu --check-cfg 'cfg(coverage)'` 238s Compiling zerocopy v0.7.34 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=3741d75984c9d7af -C extra-filename=-3741d75984c9d7af --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern byteorder=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libzerocopy_derive-421d942aa06bb9ce.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 238s warning: unexpected `cfg` condition value: `rwh_06` 238s --> /usr/share/cargo/registry/wayland-backend-0.3.8/src/sys/mod.rs:132:11 238s | 238s 132 | #[cfg(all(feature = "rwh_06", feature = "client_system"))] 238s | ^^^^^^^^^^^^^^^^^^ 238s | 238s = note: expected values for `feature` are: `client_system`, `dlopen`, `log`, `raw-window-handle`, and `server_system` 238s = help: consider adding `rwh_06` as a feature in `Cargo.toml` 238s = note: see for more information about checking conditional configuration 238s = note: `#[warn(unexpected_cfgs)]` on by default 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 238s | 238s 597 | let remainder = t.addr() % mem::align_of::(); 238s | ^^^^^^^^^^^^^^^^^^ 238s | 238s note: the lint level is defined here 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 238s | 238s 174 | unused_qualifications, 238s | ^^^^^^^^^^^^^^^^^^^^^ 238s help: remove the unnecessary path segments 238s | 238s 597 - let remainder = t.addr() % mem::align_of::(); 238s 597 + let remainder = t.addr() % align_of::(); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 238s | 238s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 238s | ^^^^^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 238s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 238s | 238s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 238s | ^^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 238s 488 + align: match NonZeroUsize::new(align_of::()) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 238s | 238s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 238s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 238s | 238s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 238s | ^^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 238s 511 + align: match NonZeroUsize::new(align_of::()) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 238s | 238s 517 | _elem_size: mem::size_of::(), 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 517 - _elem_size: mem::size_of::(), 238s 517 + _elem_size: size_of::(), 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 238s | 238s 1418 | let len = mem::size_of_val(self); 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 1418 - let len = mem::size_of_val(self); 238s 1418 + let len = size_of_val(self); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 238s | 238s 2714 | let len = mem::size_of_val(self); 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 2714 - let len = mem::size_of_val(self); 238s 2714 + let len = size_of_val(self); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 238s | 238s 2789 | let len = mem::size_of_val(self); 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 2789 - let len = mem::size_of_val(self); 238s 2789 + let len = size_of_val(self); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 238s | 238s 2863 | if bytes.len() != mem::size_of_val(self) { 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 2863 - if bytes.len() != mem::size_of_val(self) { 238s 2863 + if bytes.len() != size_of_val(self) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 238s | 238s 2920 | let size = mem::size_of_val(self); 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 2920 - let size = mem::size_of_val(self); 238s 2920 + let size = size_of_val(self); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 238s | 238s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 238s | ^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 238s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 238s | 238s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 238s | 238s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 238s | 238s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 238s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 238s | 238s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 238s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 238s | 238s 4221 | .checked_rem(mem::size_of::()) 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4221 - .checked_rem(mem::size_of::()) 238s 4221 + .checked_rem(size_of::()) 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 238s | 238s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 238s 4243 + let expected_len = match size_of::().checked_mul(count) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 238s | 238s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 238s 4268 + let expected_len = match size_of::().checked_mul(count) { 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 238s | 238s 4795 | let elem_size = mem::size_of::(); 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4795 - let elem_size = mem::size_of::(); 238s 4795 + let elem_size = size_of::(); 238s | 238s 238s warning: unnecessary qualification 238s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 238s | 238s 4825 | let elem_size = mem::size_of::(); 238s | ^^^^^^^^^^^^^^^^^ 238s | 238s help: remove the unnecessary path segments 238s | 238s 4825 - let elem_size = mem::size_of::(); 238s 4825 + let elem_size = size_of::(); 238s | 238s 238s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 238s Compiling wayland-scanner v0.31.6 238s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 239s warning: `wayland-backend` (lib) generated 2 warnings (1 duplicate) 239s Compiling rand_core v0.6.4 239s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 239s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern getrandom=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 239s | 239s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 239s | ^^^^^^^ 239s | 239s = 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` 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s = note: `#[warn(unexpected_cfgs)]` on by default 239s 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 239s | 239s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 239s | ^^^^^^^ 239s | 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 239s | 239s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 239s | ^^^^^^^ 239s | 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 239s | 239s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 239s | ^^^^^^^ 239s | 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 239s | 239s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 239s | ^^^^^^^ 239s | 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s 239s warning: unexpected `cfg` condition name: `doc_cfg` 239s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 239s | 239s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 239s | ^^^^^^^ 239s | 239s = help: consider using a Cargo feature instead 239s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 239s [lints.rust] 239s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 239s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 239s = note: see for more information about checking conditional configuration 239s 240s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 240s Compiling syn v1.0.109 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/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="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=ae566e665d1cad87 -C extra-filename=-ae566e665d1cad87 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/syn-ae566e665d1cad87 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 240s Compiling once_cell v1.20.2 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 240s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLONE_IMPLS=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_FULL=1 CARGO_FEATURE_PARSING=1 CARGO_FEATURE_PRINTING=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_FEATURE_QUOTE=1 CARGO_FEATURE_VISIT=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/debug/build/syn-a11c9578ec111a71/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/syn-ae566e665d1cad87/build-script-build` 240s [syn 1.0.109] cargo:rustc-cfg=syn_disable_nightly_tests 240s Compiling ppv-lite86 v0.2.20 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=d52b670bf7bd562c -C extra-filename=-d52b670bf7bd562c --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern zerocopy=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-3741d75984c9d7af.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 240s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 240s warning: unexpected `cfg` condition name: `wasi_ext` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 240s | 240s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 240s | ^^^^^^^^ 240s | 240s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s = note: `#[warn(unexpected_cfgs)]` on by default 240s 240s warning: unexpected `cfg` condition name: `doc_cfg` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 240s | 240s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 240s | ^^^^^^^ 240s | 240s = help: consider using a Cargo feature instead 240s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 240s [lints.rust] 240s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 240s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 240s | 240s 239 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 240s | 240s 242 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 240s | 240s 245 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 240s | 240s 248 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 240s | 240s 251 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `async_std` 240s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 240s | 240s 254 | #[cfg(feature = "async_std")] 240s | ^^^^^^^^^^----------- 240s | | 240s | help: there is a expected value with a similar name: `"async-std"` 240s | 240s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 240s = help: consider adding `async_std` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 240s Compiling num-traits v0.2.19 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=8f779d9fad25b2ca -C extra-filename=-8f779d9fad25b2ca --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/num-traits-8f779d9fad25b2ca -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern autocfg=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 240s Compiling hashbrown v0.14.5 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 240s | 240s 14 | feature = "nightly", 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s = note: `#[warn(unexpected_cfgs)]` on by default 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 240s | 240s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 240s | 240s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 240s | 240s 49 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 240s | 240s 59 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 240s | 240s 65 | #[cfg(not(feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 240s | 240s 53 | #[cfg(not(feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s Compiling cfg_aliases v0.2.1 240s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 240s | 240s 55 | #[cfg(not(feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 240s | 240s 57 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 240s | 240s 3549 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 240s | 240s 3661 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 240s | 240s 3678 | #[cfg(not(feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 240s | 240s 4304 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 240s | 240s 4319 | #[cfg(not(feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 240s | 240s 7 | #[cfg(feature = "nightly")] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 240s | 240s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 240s | 240s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `nightly` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 240s | 240s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 240s | ^^^^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `nightly` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 240s warning: unexpected `cfg` condition value: `rkyv` 240s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 240s | 240s 3 | #[cfg(feature = "rkyv")] 240s | ^^^^^^^^^^^^^^^^ 240s | 240s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 240s = help: consider adding `rkyv` as a feature in `Cargo.toml` 240s = note: see for more information about checking conditional configuration 240s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 241s | 241s 242 | #[cfg(not(feature = "nightly"))] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 241s | 241s 255 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 241s | 241s 6517 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 241s | 241s 6523 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 241s | 241s 6591 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 241s | 241s 6597 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 241s | 241s 6651 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 241s | 241s 6657 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 241s | 241s 1359 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 241s | 241s 1365 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 241s | 241s 1383 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `nightly` 241s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 241s | 241s 1389 | #[cfg(feature = "nightly")] 241s | ^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 241s = help: consider adding `nightly` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s Compiling fnv v1.0.7 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/fnv-1.0.7 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/fnv-1.0.7/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Fowler–Noll–Vo hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 / MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fnv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-fnv' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.7 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name fnv --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/fnv-1.0.7/lib.rs --error-format=json --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=a68fdaac9d04d051 -C extra-filename=-a68fdaac9d04d051 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 241s warning: `fnv` (lib) generated 1 warning (1 duplicate) 241s Compiling equivalent v1.0.1 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 241s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 241s Compiling fastrand v2.1.1 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 241s warning: unexpected `cfg` condition value: `js` 241s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 241s | 241s 202 | feature = "js" 241s | ^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `alloc`, `default`, and `std` 241s = help: consider adding `js` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s = note: `#[warn(unexpected_cfgs)]` on by default 241s 241s warning: unexpected `cfg` condition value: `js` 241s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 241s | 241s 214 | not(feature = "js") 241s | ^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `alloc`, `default`, and `std` 241s = help: consider adding `js` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 241s Compiling tempfile v3.15.0 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/tempfile-3.15.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="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=7264ab473cee172b -C extra-filename=-7264ab473cee172b --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern cfg_if=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern fastrand=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern getrandom=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --extern once_cell=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern rustix=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 241s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 241s Compiling indexmap v2.7.0 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern equivalent=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 241s warning: unexpected `cfg` condition value: `borsh` 241s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 241s | 241s 117 | #[cfg(feature = "borsh")] 241s | ^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 241s = help: consider adding `borsh` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s = note: `#[warn(unexpected_cfgs)]` on by default 241s 241s warning: unexpected `cfg` condition value: `rustc-rayon` 241s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 241s | 241s 131 | #[cfg(feature = "rustc-rayon")] 241s | ^^^^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 241s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `quickcheck` 241s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 241s | 241s 38 | #[cfg(feature = "quickcheck")] 241s | ^^^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 241s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `rustc-rayon` 241s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 241s | 241s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 241s | ^^^^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 241s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: unexpected `cfg` condition value: `rustc-rayon` 241s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 241s | 241s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 241s | ^^^^^^^^^^^^^^^^^^^^^^^ 241s | 241s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 241s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 241s = note: see for more information about checking conditional configuration 241s 241s warning: `tempfile` (lib) generated 1 warning (1 duplicate) 241s Compiling nix v0.29.0 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=18c9c6ab59c87315 -C extra-filename=-18c9c6ab59c87315 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/nix-18c9c6ab59c87315 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern cfg_aliases=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 241s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 241s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/num-traits-8f779d9fad25b2ca/build-script-build` 241s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 241s [num-traits 0.2.19] | 241s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 241s [num-traits 0.2.19] 241s [num-traits 0.2.19] warning: 1 warning emitted 241s [num-traits 0.2.19] 241s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 241s [num-traits 0.2.19] | 241s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 241s [num-traits 0.2.19] 241s [num-traits 0.2.19] warning: 1 warning emitted 241s [num-traits 0.2.19] 241s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 241s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 241s Compiling wayland-client v0.31.2 241s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_client CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-client-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-client-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, client side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-client CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wayland_client --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-client-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=69d200d40a456413 -C extra-filename=-69d200d40a456413 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern rustix=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-8b07d04095a99f1a.rmeta --extern wayland_scanner=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 242s Compiling wayland-server v0.31.1 242s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wayland_server --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-server-0.31.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("log"))' -C metadata=8f7ec6b112151e57 -C extra-filename=-8f7ec6b112151e57 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern downcast_rs=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern io_lifetimes=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rmeta --extern rustix=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-8b07d04095a99f1a.rmeta --extern wayland_scanner=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/lib.rs:165:13 242s | 242s 165 | #![cfg_attr(coverage, feature(coverage_attribute))] 242s | ^^^^^^^^ 242s | 242s = 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` 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s = note: `#[warn(unexpected_cfgs)]` on by default 242s 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:123:16 242s | 242s 123 | #[cfg_attr(coverage, coverage(off))] 242s | ^^^^^^^^ 242s | 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:197:16 242s | 242s 197 | #[cfg_attr(coverage, coverage(off))] 242s | ^^^^^^^^ 242s | 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:347:16 242s | 242s 347 | #[cfg_attr(coverage, coverage(off))] 242s | ^^^^^^^^ 242s | 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:589:16 242s | 242s 589 | #[cfg_attr(coverage, coverage(off))] 242s | ^^^^^^^^ 242s | 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s 242s warning: unexpected `cfg` condition name: `coverage` 242s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:696:16 242s | 242s 696 | #[cfg_attr(coverage, coverage(off))] 242s | ^^^^^^^^ 242s | 242s = help: consider using a Cargo feature instead 242s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 242s [lints.rust] 242s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 242s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 242s = note: see for more information about checking conditional configuration 242s 243s warning: `wayland-server` (lib) generated 1 warning (1 duplicate) 243s Compiling rand_chacha v0.3.1 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 243s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=c588a1d47b064f6f -C extra-filename=-c588a1d47b064f6f --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern ppv_lite86=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-d52b670bf7bd562c.rmeta --extern rand_core=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 243s warning: `wayland-client` (lib) generated 7 warnings (1 duplicate) 243s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/debug/build/syn-a11c9578ec111a71/out rustc --crate-name syn --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=d2c69931b37190d8 -C extra-filename=-d2c69931b37190d8 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg syn_disable_nightly_tests` 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:254:13 244s | 244s 254 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 244s | ^^^^^^^ 244s | 244s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: `#[warn(unexpected_cfgs)]` on by default 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:430:12 244s | 244s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:434:12 244s | 244s 434 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:455:12 244s | 244s 455 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:804:12 244s | 244s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:867:12 244s | 244s 867 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:887:12 244s | 244s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:916:12 244s | 244s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:959:12 244s | 244s 959 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/group.rs:136:12 244s | 244s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/group.rs:214:12 244s | 244s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/group.rs:269:12 244s | 244s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:561:12 244s | 244s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:569:12 244s | 244s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:881:11 244s | 244s 881 | #[cfg(not(syn_omit_await_from_token_macro))] 244s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:883:7 244s | 244s 883 | #[cfg(syn_omit_await_from_token_macro)] 244s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:394:24 244s | 244s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:398:24 244s | 244s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:406:24 244s | 244s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:414:24 244s | 244s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:418:24 244s | 244s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:426:24 244s | 244s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 556 | / define_punctuation_structs! { 244s 557 | | "_" pub struct Underscore/1 /// `_` 244s 558 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:271:24 244s | 244s 271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:275:24 244s | 244s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:283:24 244s | 244s 283 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:291:24 244s | 244s 291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:295:24 244s | 244s 295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:303:24 244s | 244s 303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:309:24 244s | 244s 309 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:317:24 244s | 244s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s ... 244s 652 | / define_keywords! { 244s 653 | | "abstract" pub struct Abstract /// `abstract` 244s 654 | | "as" pub struct As /// `as` 244s 655 | | "async" pub struct Async /// `async` 244s ... | 244s 704 | | "yield" pub struct Yield /// `yield` 244s 705 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:444:24 244s | 244s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:452:24 244s | 244s 452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:394:24 244s | 244s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:398:24 244s | 244s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:406:24 244s | 244s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:414:24 244s | 244s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:418:24 244s | 244s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:426:24 244s | 244s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | / define_punctuation! { 244s 708 | | "+" pub struct Add/1 /// `+` 244s 709 | | "+=" pub struct AddEq/2 /// `+=` 244s 710 | | "&" pub struct And/1 /// `&` 244s ... | 244s 753 | | "~" pub struct Tilde/1 /// `~` 244s 754 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 244s Compiling wait-timeout v0.2.0 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wait_timeout CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wait-timeout-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wait-timeout-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A crate to wait on a child process with a timeout specified across Unix and 244s Windows platforms. 244s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wait-timeout CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wait_timeout --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/wait-timeout-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c8041ffbea216b96 -C extra-filename=-c8041ffbea216b96 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 244s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 244s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:27:23 244s | 244s 27 | use std::sync::{Once, ONCE_INIT, Mutex}; 244s | ^^^^^^^^^ 244s | 244s note: the lint level is defined here 244s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/lib.rs:31:23 244s | 244s 31 | #![deny(missing_docs, warnings)] 244s | ^^^^^^^^ 244s = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` 244s 244s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 244s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:32:21 244s | 244s 32 | static INIT: Once = ONCE_INIT; 244s | ^^^^^^^^^ 244s | 244s help: replace the use of the deprecated constant 244s | 244s 32 | static INIT: Once = Once::new(); 244s | ~~~~~~~~~~~ 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:503:24 244s | 244s 503 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:507:24 244s | 244s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:515:24 244s | 244s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:523:24 244s | 244s 523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:527:24 244s | 244s 527 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/token.rs:535:24 244s | 244s 535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 756 | / define_delimiters! { 244s 757 | | "{" pub struct Brace /// `{...}` 244s 758 | | "[" pub struct Bracket /// `[...]` 244s 759 | | "(" pub struct Paren /// `(...)` 244s 760 | | " " pub struct Group /// None-delimited group 244s 761 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ident.rs:38:12 244s | 244s 38 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:463:12 244s | 244s 463 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:148:16 244s | 244s 148 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:329:16 244s | 244s 329 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:360:16 244s | 244s 360 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:336:1 244s | 244s 336 | / ast_enum_of_structs! { 244s 337 | | /// Content of a compile-time structured attribute. 244s 338 | | /// 244s 339 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 369 | | } 244s 370 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:377:16 244s | 244s 377 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:390:16 244s | 244s 390 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:417:16 244s | 244s 417 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:412:1 244s | 244s 412 | / ast_enum_of_structs! { 244s 413 | | /// Element of a compile-time attribute list. 244s 414 | | /// 244s 415 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 425 | | } 244s 426 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:165:16 244s | 244s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:213:16 244s | 244s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:223:16 244s | 244s 223 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:237:16 244s | 244s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:251:16 244s | 244s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:557:16 244s | 244s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:565:16 244s | 244s 565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:573:16 244s | 244s 573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:581:16 244s | 244s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:630:16 244s | 244s 630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:644:16 244s | 244s 644 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/attr.rs:654:16 244s | 244s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:9:16 244s | 244s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:36:16 244s | 244s 36 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:25:1 244s | 244s 25 | / ast_enum_of_structs! { 244s 26 | | /// Data stored within an enum variant or struct. 244s 27 | | /// 244s 28 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 47 | | } 244s 48 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:56:16 244s | 244s 56 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:68:16 244s | 244s 68 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:153:16 244s | 244s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:185:16 244s | 244s 185 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:173:1 244s | 244s 173 | / ast_enum_of_structs! { 244s 174 | | /// The visibility level of an item: inherited or `pub` or 244s 175 | | /// `pub(restricted)`. 244s 176 | | /// 244s ... | 244s 199 | | } 244s 200 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:207:16 244s | 244s 207 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:218:16 244s | 244s 218 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:230:16 244s | 244s 230 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:246:16 244s | 244s 246 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:275:16 244s | 244s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:286:16 244s | 244s 286 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:327:16 244s | 244s 327 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:299:20 244s | 244s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:315:20 244s | 244s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:423:16 244s | 244s 423 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:436:16 244s | 244s 436 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:445:16 244s | 244s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:454:16 244s | 244s 454 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:467:16 244s | 244s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:474:16 244s | 244s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/data.rs:481:16 244s | 244s 481 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:89:16 244s | 244s 89 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:90:20 244s | 244s 90 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:14:1 244s | 244s 14 | / ast_enum_of_structs! { 244s 15 | | /// A Rust expression. 244s 16 | | /// 244s 17 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 249 | | } 244s 250 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:256:16 244s | 244s 256 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:268:16 244s | 244s 268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:281:16 244s | 244s 281 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:294:16 244s | 244s 294 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:307:16 244s | 244s 307 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:321:16 244s | 244s 321 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:334:16 244s | 244s 334 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:346:16 244s | 244s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:359:16 244s | 244s 359 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:373:16 244s | 244s 373 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:387:16 244s | 244s 387 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:400:16 244s | 244s 400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:418:16 244s | 244s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:431:16 244s | 244s 431 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:444:16 244s | 244s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:464:16 244s | 244s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:480:16 244s | 244s 480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:495:16 244s | 244s 495 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:508:16 244s | 244s 508 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:523:16 244s | 244s 523 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:534:16 244s | 244s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:547:16 244s | 244s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:558:16 244s | 244s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:572:16 244s | 244s 572 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:588:16 244s | 244s 588 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:604:16 244s | 244s 604 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:616:16 244s | 244s 616 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:629:16 244s | 244s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:643:16 244s | 244s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:657:16 244s | 244s 657 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:672:16 244s | 244s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:687:16 244s | 244s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:699:16 244s | 244s 699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:711:16 244s | 244s 711 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:723:16 244s | 244s 723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:737:16 244s | 244s 737 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:749:16 244s | 244s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:761:16 244s | 244s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:775:16 244s | 244s 775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:850:16 244s | 244s 850 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:920:16 244s | 244s 920 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:968:16 244s | 244s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:982:16 244s | 244s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:999:16 244s | 244s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1021:16 244s | 244s 1021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1049:16 244s | 244s 1049 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1065:16 244s | 244s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:246:15 244s | 244s 246 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:784:40 244s | 244s 784 | #[cfg(all(feature = "parsing", not(syn_no_const_vec_new)))] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:838:19 244s | 244s 838 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1159:16 244s | 244s 1159 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1880:16 244s | 244s 1880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1975:16 244s | 244s 1975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2001:16 244s | 244s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2063:16 244s | 244s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2084:16 244s | 244s 2084 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2101:16 244s | 244s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2119:16 244s | 244s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2147:16 244s | 244s 2147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2165:16 244s | 244s 2165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2206:16 244s | 244s 2206 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2236:16 244s | 244s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2258:16 244s | 244s 2258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2326:16 244s | 244s 2326 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2349:16 244s | 244s 2349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2372:16 244s | 244s 2372 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2381:16 244s | 244s 2381 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2396:16 244s | 244s 2396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2405:16 244s | 244s 2405 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2414:16 244s | 244s 2414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2426:16 244s | 244s 2426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2496:16 244s | 244s 2496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2547:16 244s | 244s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2571:16 244s | 244s 2571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2582:16 244s | 244s 2582 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2594:16 244s | 244s 2594 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2648:16 244s | 244s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2678:16 244s | 244s 2678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2727:16 244s | 244s 2727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2759:16 244s | 244s 2759 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2801:16 244s | 244s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2818:16 244s | 244s 2818 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2832:16 244s | 244s 2832 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2846:16 244s | 244s 2846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2879:16 244s | 244s 2879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2292:28 244s | 244s 2292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s ... 244s 2309 | / impl_by_parsing_expr! { 244s 2310 | | ExprAssign, Assign, "expected assignment expression", 244s 2311 | | ExprAssignOp, AssignOp, "expected compound assignment expression", 244s 2312 | | ExprAwait, Await, "expected await expression", 244s ... | 244s 2322 | | ExprType, Type, "expected type ascription expression", 244s 2323 | | } 244s | |_____- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `impl_by_parsing_expr` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:1248:20 244s | 244s 1248 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "full", feature = "parsing"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2539:23 244s | 244s 2539 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2905:23 244s | 244s 2905 | #[cfg(not(syn_no_const_vec_new))] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2907:19 244s | 244s 2907 | #[cfg(syn_no_const_vec_new)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2988:16 244s | 244s 2988 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:2998:16 244s | 244s 2998 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3008:16 244s | 244s 3008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3020:16 244s | 244s 3020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3035:16 244s | 244s 3035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3046:16 244s | 244s 3046 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3057:16 244s | 244s 3057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3072:16 244s | 244s 3072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3082:16 244s | 244s 3082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3091:16 244s | 244s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3099:16 244s | 244s 3099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3110:16 244s | 244s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3141:16 244s | 244s 3141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3153:16 244s | 244s 3153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3165:16 244s | 244s 3165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3180:16 244s | 244s 3180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3197:16 244s | 244s 3197 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3211:16 244s | 244s 3211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3233:16 244s | 244s 3233 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3244:16 244s | 244s 3244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3255:16 244s | 244s 3255 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3265:16 244s | 244s 3265 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3275:16 244s | 244s 3275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3291:16 244s | 244s 3291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3304:16 244s | 244s 3304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3317:16 244s | 244s 3317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3328:16 244s | 244s 3328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3338:16 244s | 244s 3338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3348:16 244s | 244s 3348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3358:16 244s | 244s 3358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3367:16 244s | 244s 3367 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3379:16 244s | 244s 3379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3390:16 244s | 244s 3390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3400:16 244s | 244s 3400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3409:16 244s | 244s 3409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3420:16 244s | 244s 3420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3431:16 244s | 244s 3431 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3441:16 244s | 244s 3441 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3451:16 244s | 244s 3451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3460:16 244s | 244s 3460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3478:16 244s | 244s 3478 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3491:16 244s | 244s 3491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3501:16 244s | 244s 3501 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3512:16 244s | 244s 3512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3522:16 244s | 244s 3522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3531:16 244s | 244s 3531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/expr.rs:3544:16 244s | 244s 3544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:296:5 244s | 244s 296 | doc_cfg, 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:307:5 244s | 244s 307 | doc_cfg, 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:318:5 244s | 244s 318 | doc_cfg, 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:14:16 244s | 244s 14 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:35:16 244s | 244s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:23:1 244s | 244s 23 | / ast_enum_of_structs! { 244s 24 | | /// A generic type parameter, lifetime, or const generic: `T: Into`, 244s 25 | | /// `'a: 'b`, `const LEN: usize`. 244s 26 | | /// 244s ... | 244s 45 | | } 244s 46 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:53:16 244s | 244s 53 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:69:16 244s | 244s 69 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:83:16 244s | 244s 83 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:363:20 244s | 244s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 404 | generics_wrapper_impls!(ImplGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:371:20 244s | 244s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 404 | generics_wrapper_impls!(ImplGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:382:20 244s | 244s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 404 | generics_wrapper_impls!(ImplGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:386:20 244s | 244s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 404 | generics_wrapper_impls!(ImplGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:394:20 244s | 244s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 404 | generics_wrapper_impls!(ImplGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:363:20 244s | 244s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 406 | generics_wrapper_impls!(TypeGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:371:20 244s | 244s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 406 | generics_wrapper_impls!(TypeGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:382:20 244s | 244s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 406 | generics_wrapper_impls!(TypeGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:386:20 244s | 244s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 406 | generics_wrapper_impls!(TypeGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:394:20 244s | 244s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 406 | generics_wrapper_impls!(TypeGenerics); 244s | ------------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:363:20 244s | 244s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 408 | generics_wrapper_impls!(Turbofish); 244s | ---------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:371:20 244s | 244s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 408 | generics_wrapper_impls!(Turbofish); 244s | ---------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:382:20 244s | 244s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 408 | generics_wrapper_impls!(Turbofish); 244s | ---------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:386:20 244s | 244s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 408 | generics_wrapper_impls!(Turbofish); 244s | ---------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:394:20 244s | 244s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 408 | generics_wrapper_impls!(Turbofish); 244s | ---------------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:426:16 244s | 244s 426 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:475:16 244s | 244s 475 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:470:1 244s | 244s 470 | / ast_enum_of_structs! { 244s 471 | | /// A trait or lifetime used as a bound on a type parameter. 244s 472 | | /// 244s 473 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 479 | | } 244s 480 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:487:16 244s | 244s 487 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:504:16 244s | 244s 504 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:517:16 244s | 244s 517 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:535:16 244s | 244s 535 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:524:1 244s | 244s 524 | / ast_enum_of_structs! { 244s 525 | | /// A single predicate in a `where` clause: `T: Deserialize<'de>`. 244s 526 | | /// 244s 527 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 545 | | } 244s 546 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:553:16 244s | 244s 553 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:570:16 244s | 244s 570 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:583:16 244s | 244s 583 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:347:9 244s | 244s 347 | doc_cfg, 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:597:16 244s | 244s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:660:16 244s | 244s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:687:16 244s | 244s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:725:16 244s | 244s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:747:16 244s | 244s 747 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:758:16 244s | 244s 758 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:812:16 244s | 244s 812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:856:16 244s | 244s 856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:905:16 244s | 244s 905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:916:16 244s | 244s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:940:16 244s | 244s 940 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:971:16 244s | 244s 971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:982:16 244s | 244s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1057:16 244s | 244s 1057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1207:16 244s | 244s 1207 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1217:16 244s | 244s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1229:16 244s | 244s 1229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1268:16 244s | 244s 1268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1300:16 244s | 244s 1300 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1310:16 244s | 244s 1310 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1325:16 244s | 244s 1325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1335:16 244s | 244s 1335 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1345:16 244s | 244s 1345 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/generics.rs:1354:16 244s | 244s 1354 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:19:16 244s | 244s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:20:20 244s | 244s 20 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:9:1 244s | 244s 9 | / ast_enum_of_structs! { 244s 10 | | /// Things that can appear directly inside of a module or scope. 244s 11 | | /// 244s 12 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 96 | | } 244s 97 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:103:16 244s | 244s 103 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:121:16 244s | 244s 121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:137:16 244s | 244s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:154:16 244s | 244s 154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:167:16 244s | 244s 167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:181:16 244s | 244s 181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:201:16 244s | 244s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:215:16 244s | 244s 215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:229:16 244s | 244s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:244:16 244s | 244s 244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:263:16 244s | 244s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:279:16 244s | 244s 279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:299:16 244s | 244s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:316:16 244s | 244s 316 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:333:16 244s | 244s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:348:16 244s | 244s 348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:477:16 244s | 244s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:467:1 244s | 244s 467 | / ast_enum_of_structs! { 244s 468 | | /// A suffix of an import tree in a `use` item: `Type as Renamed` or `*`. 244s 469 | | /// 244s 470 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 493 | | } 244s 494 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:500:16 244s | 244s 500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:512:16 244s | 244s 512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:522:16 244s | 244s 522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:534:16 244s | 244s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:544:16 244s | 244s 544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:561:16 244s | 244s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:562:20 244s | 244s 562 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:551:1 244s | 244s 551 | / ast_enum_of_structs! { 244s 552 | | /// An item within an `extern` block. 244s 553 | | /// 244s 554 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 600 | | } 244s 601 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:607:16 244s | 244s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:620:16 244s | 244s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:637:16 244s | 244s 637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:651:16 244s | 244s 651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:669:16 244s | 244s 669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:670:20 244s | 244s 670 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:659:1 244s | 244s 659 | / ast_enum_of_structs! { 244s 660 | | /// An item declaration within the definition of a trait. 244s 661 | | /// 244s 662 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 708 | | } 244s 709 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:715:16 244s | 244s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:731:16 244s | 244s 731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:744:16 244s | 244s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:761:16 244s | 244s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:779:16 244s | 244s 779 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:780:20 244s | 244s 780 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:769:1 244s | 244s 769 | / ast_enum_of_structs! { 244s 770 | | /// An item within an impl block. 244s 771 | | /// 244s 772 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 818 | | } 244s 819 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:825:16 244s | 244s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:844:16 244s | 244s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:858:16 244s | 244s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:876:16 244s | 244s 876 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:889:16 244s | 244s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:927:16 244s | 244s 927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:923:1 244s | 244s 923 | / ast_enum_of_structs! { 244s 924 | | /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. 244s 925 | | /// 244s 926 | | /// *This type is available only if Syn is built with the `"full"` feature.* 244s ... | 244s 938 | | } 244s 939 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:949:16 244s | 244s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:93:15 244s | 244s 93 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:381:19 244s | 244s 381 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:597:15 244s | 244s 597 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:705:15 244s | 244s 705 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:815:15 244s | 244s 815 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:976:16 244s | 244s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1237:16 244s | 244s 1237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1264:16 244s | 244s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1305:16 244s | 244s 1305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1338:16 244s | 244s 1338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1352:16 244s | 244s 1352 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1401:16 244s | 244s 1401 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1419:16 244s | 244s 1419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1500:16 244s | 244s 1500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1535:16 244s | 244s 1535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1564:16 244s | 244s 1564 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1584:16 244s | 244s 1584 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1680:16 244s | 244s 1680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1722:16 244s | 244s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1745:16 244s | 244s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1827:16 244s | 244s 1827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1843:16 244s | 244s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1859:16 244s | 244s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1903:16 244s | 244s 1903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1921:16 244s | 244s 1921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1971:16 244s | 244s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1995:16 244s | 244s 1995 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2019:16 244s | 244s 2019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2070:16 244s | 244s 2070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2144:16 244s | 244s 2144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2200:16 244s | 244s 2200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2260:16 244s | 244s 2260 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2290:16 244s | 244s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2319:16 244s | 244s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2392:16 244s | 244s 2392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2410:16 244s | 244s 2410 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2522:16 244s | 244s 2522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2603:16 244s | 244s 2603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2628:16 244s | 244s 2628 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2668:16 244s | 244s 2668 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2726:16 244s | 244s 2726 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:1817:23 244s | 244s 1817 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2251:23 244s | 244s 2251 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2592:27 244s | 244s 2592 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2771:16 244s | 244s 2771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2787:16 244s | 244s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2799:16 244s | 244s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2815:16 244s | 244s 2815 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2830:16 244s | 244s 2830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2843:16 244s | 244s 2843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2861:16 244s | 244s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2873:16 244s | 244s 2873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2888:16 244s | 244s 2888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2903:16 244s | 244s 2903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2929:16 244s | 244s 2929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2942:16 244s | 244s 2942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2964:16 244s | 244s 2964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:2979:16 244s | 244s 2979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3001:16 244s | 244s 3001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3023:16 244s | 244s 3023 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3034:16 244s | 244s 3034 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3043:16 244s | 244s 3043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3050:16 244s | 244s 3050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3059:16 244s | 244s 3059 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3066:16 244s | 244s 3066 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3075:16 244s | 244s 3075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3091:16 244s | 244s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3110:16 244s | 244s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3130:16 244s | 244s 3130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3139:16 244s | 244s 3139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3155:16 244s | 244s 3155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3177:16 244s | 244s 3177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3193:16 244s | 244s 3193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3202:16 244s | 244s 3202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3212:16 244s | 244s 3212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3226:16 244s | 244s 3226 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3237:16 244s | 244s 3237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3273:16 244s | 244s 3273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/item.rs:3301:16 244s | 244s 3301 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/file.rs:80:16 244s | 244s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/file.rs:93:16 244s | 244s 93 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/file.rs:118:16 244s | 244s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lifetime.rs:127:16 244s | 244s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lifetime.rs:145:16 244s | 244s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:629:12 244s | 244s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:640:12 244s | 244s 640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:652:12 244s | 244s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:14:1 244s | 244s 14 | / ast_enum_of_structs! { 244s 15 | | /// A Rust literal such as a string or integer or boolean. 244s 16 | | /// 244s 17 | | /// # Syntax tree enum 244s ... | 244s 48 | | } 244s 49 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 703 | lit_extra_traits!(LitStr); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 703 | lit_extra_traits!(LitStr); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 703 | lit_extra_traits!(LitStr); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 704 | lit_extra_traits!(LitByteStr); 244s | ----------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 704 | lit_extra_traits!(LitByteStr); 244s | ----------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 704 | lit_extra_traits!(LitByteStr); 244s | ----------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 705 | lit_extra_traits!(LitByte); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 705 | lit_extra_traits!(LitByte); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 705 | lit_extra_traits!(LitByte); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 706 | lit_extra_traits!(LitChar); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 706 | lit_extra_traits!(LitChar); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 706 | lit_extra_traits!(LitChar); 244s | -------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 707 | lit_extra_traits!(LitInt); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | lit_extra_traits!(LitInt); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 707 | lit_extra_traits!(LitInt); 244s | ------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:666:20 244s | 244s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s ... 244s 708 | lit_extra_traits!(LitFloat); 244s | --------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:676:20 244s | 244s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 708 | lit_extra_traits!(LitFloat); 244s | --------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:684:20 244s | 244s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s ... 244s 708 | lit_extra_traits!(LitFloat); 244s | --------------------------- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:170:16 244s | 244s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:200:16 244s | 244s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:557:16 244s | 244s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:567:16 244s | 244s 567 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:577:16 244s | 244s 577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:587:16 244s | 244s 587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:597:16 244s | 244s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:607:16 244s | 244s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:617:16 244s | 244s 617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:744:16 244s | 244s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:816:16 244s | 244s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:827:16 244s | 244s 827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:838:16 244s | 244s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:849:16 244s | 244s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:860:16 244s | 244s 860 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:871:16 244s | 244s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:882:16 244s | 244s 882 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:900:16 244s | 244s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:907:16 244s | 244s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:914:16 244s | 244s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:921:16 244s | 244s 921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:928:16 244s | 244s 928 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:935:16 244s | 244s 935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:942:16 244s | 244s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_negative_literal_parse` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lit.rs:1568:15 244s | 244s 1568 | #[cfg(syn_no_negative_literal_parse)] 244s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_negative_literal_parse)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_negative_literal_parse)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:15:16 244s | 244s 15 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:29:16 244s | 244s 29 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:137:16 244s | 244s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:145:16 244s | 244s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:177:16 244s | 244s 177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/mac.rs:201:16 244s | 244s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:8:16 244s | 244s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:37:16 244s | 244s 37 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:57:16 244s | 244s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:70:16 244s | 244s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:83:16 244s | 244s 83 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:95:16 244s | 244s 95 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/derive.rs:231:16 244s | 244s 231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:6:16 244s | 244s 6 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:72:16 244s | 244s 72 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:130:16 244s | 244s 130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:165:16 244s | 244s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:188:16 244s | 244s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/op.rs:224:16 244s | 244s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:7:16 244s | 244s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:19:16 244s | 244s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:39:16 244s | 244s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:136:16 244s | 244s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:147:16 244s | 244s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:109:20 244s | 244s 109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:312:16 244s | 244s 312 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:321:16 244s | 244s 321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/stmt.rs:336:16 244s | 244s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:16:16 244s | 244s 16 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:17:20 244s | 244s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:5:1 244s | 244s 5 | / ast_enum_of_structs! { 244s 6 | | /// The possible types that a Rust value could have. 244s 7 | | /// 244s 8 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 244s ... | 244s 88 | | } 244s 89 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:96:16 244s | 244s 96 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:110:16 244s | 244s 110 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:128:16 244s | 244s 128 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:141:16 244s | 244s 141 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:153:16 244s | 244s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:164:16 244s | 244s 164 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:175:16 244s | 244s 175 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:186:16 244s | 244s 186 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:199:16 244s | 244s 199 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:211:16 244s | 244s 211 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:225:16 244s | 244s 225 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:239:16 244s | 244s 239 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:252:16 244s | 244s 252 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:264:16 244s | 244s 264 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:276:16 244s | 244s 276 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:288:16 244s | 244s 288 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:311:16 244s | 244s 311 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:323:16 244s | 244s 323 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:85:15 244s | 244s 85 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:342:16 244s | 244s 342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:656:16 244s | 244s 656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:667:16 244s | 244s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:680:16 244s | 244s 680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:703:16 244s | 244s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:716:16 244s | 244s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:777:16 244s | 244s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:786:16 244s | 244s 786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:795:16 244s | 244s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:828:16 244s | 244s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:837:16 244s | 244s 837 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:887:16 244s | 244s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:895:16 244s | 244s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:949:16 244s | 244s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:992:16 244s | 244s 992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1003:16 244s | 244s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1024:16 244s | 244s 1024 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1098:16 244s | 244s 1098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1108:16 244s | 244s 1108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:357:20 244s | 244s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:869:20 244s | 244s 869 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:904:20 244s | 244s 904 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:958:20 244s | 244s 958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1128:16 244s | 244s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1137:16 244s | 244s 1137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1148:16 244s | 244s 1148 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1162:16 244s | 244s 1162 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1172:16 244s | 244s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1193:16 244s | 244s 1193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1200:16 244s | 244s 1200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1209:16 244s | 244s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1216:16 244s | 244s 1216 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1224:16 244s | 244s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1232:16 244s | 244s 1232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1241:16 244s | 244s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1250:16 244s | 244s 1250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1257:16 244s | 244s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1264:16 244s | 244s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1277:16 244s | 244s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1289:16 244s | 244s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/ty.rs:1297:16 244s | 244s 1297 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:16:16 244s | 244s 16 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:17:20 244s | 244s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/macros.rs:155:20 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s ::: /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:5:1 244s | 244s 5 | / ast_enum_of_structs! { 244s 6 | | /// A pattern in a local binding, function signature, match expression, or 244s 7 | | /// various other places. 244s 8 | | /// 244s ... | 244s 97 | | } 244s 98 | | } 244s | |_- in this macro invocation 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:104:16 244s | 244s 104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:119:16 244s | 244s 119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:136:16 244s | 244s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:147:16 244s | 244s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:158:16 244s | 244s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:176:16 244s | 244s 176 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:188:16 244s | 244s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:201:16 244s | 244s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:214:16 244s | 244s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:225:16 244s | 244s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:237:16 244s | 244s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:251:16 244s | 244s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:263:16 244s | 244s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:275:16 244s | 244s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:288:16 244s | 244s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:302:16 244s | 244s 302 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:94:15 244s | 244s 94 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:318:16 244s | 244s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:769:16 244s | 244s 769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:777:16 244s | 244s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:791:16 244s | 244s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:807:16 244s | 244s 807 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:816:16 244s | 244s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:826:16 244s | 244s 826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:834:16 244s | 244s 834 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:844:16 244s | 244s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:853:16 244s | 244s 853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:863:16 244s | 244s 863 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:871:16 244s | 244s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:879:16 244s | 244s 879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:889:16 244s | 244s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:899:16 244s | 244s 899 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:907:16 244s | 244s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/pat.rs:916:16 244s | 244s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:9:16 244s | 244s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:35:16 244s | 244s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:67:16 244s | 244s 67 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:105:16 244s | 244s 105 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:130:16 244s | 244s 130 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:144:16 244s | 244s 144 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:157:16 244s | 244s 157 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:171:16 244s | 244s 171 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:201:16 244s | 244s 201 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:218:16 244s | 244s 218 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:225:16 244s | 244s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:358:16 244s | 244s 358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:385:16 244s | 244s 385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:397:16 244s | 244s 397 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:430:16 244s | 244s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:442:16 244s | 244s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:505:20 244s | 244s 505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:569:20 244s | 244s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:591:20 244s | 244s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:693:16 244s | 244s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:701:16 244s | 244s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:709:16 244s | 244s 709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:724:16 244s | 244s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:752:16 244s | 244s 752 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:793:16 244s | 244s 793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:802:16 244s | 244s 802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/path.rs:811:16 244s | 244s 811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:371:12 244s | 244s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:386:12 244s | 244s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:395:12 244s | 244s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:408:12 244s | 244s 408 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:422:12 244s | 244s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:1012:12 244s | 244s 1012 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:54:15 244s | 244s 54 | #[cfg(not(syn_no_const_vec_new))] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:63:11 244s | 244s 63 | #[cfg(syn_no_const_vec_new)] 244s | ^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:267:16 244s | 244s 267 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:288:16 244s | 244s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:325:16 244s | 244s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:346:16 244s | 244s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:1060:16 244s | 244s 1060 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/punctuated.rs:1071:16 244s | 244s 1071 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse_quote.rs:68:12 244s | 244s 68 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse_quote.rs:100:12 244s | 244s 100 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse_macro_input.rs:107:12 244s | 244s 107 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/lib.rs:579:16 244s | 244s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "visit")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:1216:15 244s | 244s 1216 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:1905:15 244s | 244s 1905 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:2071:15 244s | 244s 2071 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:2207:15 244s | 244s 2207 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:2807:15 244s | 244s 2807 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:3263:15 244s | 244s 3263 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/visit.rs:3392:15 244s | 244s 3392 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:7:12 244s | 244s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:17:12 244s | 244s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:29:12 244s | 244s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:43:12 244s | 244s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:46:12 244s | 244s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:53:12 244s | 244s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:66:12 244s | 244s 66 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:77:12 244s | 244s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:80:12 244s | 244s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:87:12 244s | 244s 87 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:98:12 244s | 244s 98 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:108:12 244s | 244s 108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:120:12 244s | 244s 120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:135:12 244s | 244s 135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:146:12 244s | 244s 146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:157:12 244s | 244s 157 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:168:12 244s | 244s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:179:12 244s | 244s 179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:189:12 244s | 244s 189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:202:12 244s | 244s 202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:282:12 244s | 244s 282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:293:12 244s | 244s 293 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:305:12 244s | 244s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:317:12 244s | 244s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:329:12 244s | 244s 329 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:341:12 244s | 244s 341 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:353:12 244s | 244s 353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:364:12 244s | 244s 364 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:375:12 244s | 244s 375 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:387:12 244s | 244s 387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:399:12 244s | 244s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:411:12 244s | 244s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:428:12 244s | 244s 428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:439:12 244s | 244s 439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:451:12 244s | 244s 451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:466:12 244s | 244s 466 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:477:12 244s | 244s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:490:12 244s | 244s 490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:502:12 244s | 244s 502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:515:12 244s | 244s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:525:12 244s | 244s 525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:537:12 244s | 244s 537 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:547:12 244s | 244s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:560:12 244s | 244s 560 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:575:12 244s | 244s 575 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:586:12 244s | 244s 586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:597:12 244s | 244s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:609:12 244s | 244s 609 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:622:12 244s | 244s 622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:635:12 244s | 244s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:646:12 244s | 244s 646 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:660:12 244s | 244s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:671:12 244s | 244s 671 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:682:12 244s | 244s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:693:12 244s | 244s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:705:12 244s | 244s 705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:716:12 244s | 244s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:727:12 244s | 244s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:740:12 244s | 244s 740 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:751:12 244s | 244s 751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:764:12 244s | 244s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:776:12 244s | 244s 776 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:788:12 244s | 244s 788 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:799:12 244s | 244s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:809:12 244s | 244s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:819:12 244s | 244s 819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:830:12 244s | 244s 830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:840:12 244s | 244s 840 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:855:12 244s | 244s 855 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:867:12 244s | 244s 867 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:878:12 244s | 244s 878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:894:12 244s | 244s 894 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:907:12 244s | 244s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:920:12 244s | 244s 920 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:930:12 244s | 244s 930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:941:12 244s | 244s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:953:12 244s | 244s 953 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:968:12 244s | 244s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:986:12 244s | 244s 986 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:997:12 244s | 244s 997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1010:12 244s | 244s 1010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1027:12 244s | 244s 1027 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1037:12 244s | 244s 1037 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1064:12 244s | 244s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1081:12 244s | 244s 1081 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1096:12 244s | 244s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1111:12 244s | 244s 1111 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1123:12 244s | 244s 1123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1135:12 244s | 244s 1135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1152:12 244s | 244s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1164:12 244s | 244s 1164 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1177:12 244s | 244s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1191:12 244s | 244s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1209:12 244s | 244s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1224:12 244s | 244s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1243:12 244s | 244s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1259:12 244s | 244s 1259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1275:12 244s | 244s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1289:12 244s | 244s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1303:12 244s | 244s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1313:12 244s | 244s 1313 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1324:12 244s | 244s 1324 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1339:12 244s | 244s 1339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1349:12 244s | 244s 1349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1362:12 244s | 244s 1362 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1374:12 244s | 244s 1374 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1385:12 244s | 244s 1385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1395:12 244s | 244s 1395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1406:12 244s | 244s 1406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1417:12 244s | 244s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1428:12 244s | 244s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1440:12 244s | 244s 1440 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1450:12 244s | 244s 1450 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1461:12 244s | 244s 1461 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1487:12 244s | 244s 1487 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1498:12 244s | 244s 1498 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1511:12 244s | 244s 1511 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1521:12 244s | 244s 1521 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1531:12 244s | 244s 1531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1542:12 244s | 244s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1553:12 244s | 244s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1565:12 244s | 244s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1577:12 244s | 244s 1577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1587:12 244s | 244s 1587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1598:12 244s | 244s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1611:12 244s | 244s 1611 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1622:12 244s | 244s 1622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1633:12 244s | 244s 1633 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1645:12 244s | 244s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1655:12 244s | 244s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1665:12 244s | 244s 1665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1678:12 244s | 244s 1678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1688:12 244s | 244s 1688 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1699:12 244s | 244s 1699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1710:12 244s | 244s 1710 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1722:12 244s | 244s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1735:12 244s | 244s 1735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1738:12 244s | 244s 1738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1745:12 244s | 244s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1757:12 244s | 244s 1757 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1767:12 244s | 244s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1786:12 244s | 244s 1786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1798:12 244s | 244s 1798 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1810:12 244s | 244s 1810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1813:12 244s | 244s 1813 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1820:12 244s | 244s 1820 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1835:12 244s | 244s 1835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1850:12 244s | 244s 1850 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1861:12 244s | 244s 1861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1873:12 244s | 244s 1873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1889:12 244s | 244s 1889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1914:12 244s | 244s 1914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1926:12 244s | 244s 1926 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1942:12 244s | 244s 1942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1952:12 244s | 244s 1952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1962:12 244s | 244s 1962 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1971:12 244s | 244s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1978:12 244s | 244s 1978 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1987:12 244s | 244s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2001:12 244s | 244s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2011:12 244s | 244s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2021:12 244s | 244s 2021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2031:12 244s | 244s 2031 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2043:12 244s | 244s 2043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2055:12 244s | 244s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2065:12 244s | 244s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2075:12 244s | 244s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2085:12 244s | 244s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2088:12 244s | 244s 2088 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2095:12 244s | 244s 2095 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2104:12 244s | 244s 2104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2114:12 244s | 244s 2114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2123:12 244s | 244s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2134:12 244s | 244s 2134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2145:12 244s | 244s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2158:12 244s | 244s 2158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2168:12 244s | 244s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2180:12 244s | 244s 2180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2189:12 244s | 244s 2189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2198:12 244s | 244s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2210:12 244s | 244s 2210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2222:12 244s | 244s 2222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:2232:12 244s | 244s 2232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:276:23 244s | 244s 276 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:849:19 244s | 244s 849 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:962:19 244s | 244s 962 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1058:19 244s | 244s 1058 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1481:19 244s | 244s 1481 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1829:19 244s | 244s 1829 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/clone.rs:1908:19 244s | 244s 1908 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:8:12 244s | 244s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:11:12 244s | 244s 11 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:18:12 244s | 244s 18 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:21:12 244s | 244s 21 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:28:12 244s | 244s 28 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:31:12 244s | 244s 31 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:39:12 244s | 244s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:42:12 244s | 244s 42 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:53:12 244s | 244s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:56:12 244s | 244s 56 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:64:12 244s | 244s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:67:12 244s | 244s 67 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:74:12 244s | 244s 74 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:77:12 244s | 244s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:114:12 244s | 244s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:117:12 244s | 244s 117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:124:12 244s | 244s 124 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:127:12 244s | 244s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:134:12 244s | 244s 134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:137:12 244s | 244s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:144:12 244s | 244s 144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:147:12 244s | 244s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:155:12 244s | 244s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:158:12 244s | 244s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:165:12 244s | 244s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:168:12 244s | 244s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:180:12 244s | 244s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:183:12 244s | 244s 183 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:190:12 244s | 244s 190 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:193:12 244s | 244s 193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:200:12 244s | 244s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:203:12 244s | 244s 203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:210:12 244s | 244s 210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:213:12 244s | 244s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:221:12 244s | 244s 221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:224:12 244s | 244s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:305:12 244s | 244s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:308:12 244s | 244s 308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:315:12 244s | 244s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:318:12 244s | 244s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:325:12 244s | 244s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:328:12 244s | 244s 328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:336:12 244s | 244s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:339:12 244s | 244s 339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:347:12 244s | 244s 347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:350:12 244s | 244s 350 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:357:12 244s | 244s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:360:12 244s | 244s 360 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:368:12 244s | 244s 368 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:371:12 244s | 244s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:379:12 244s | 244s 379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:382:12 244s | 244s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:389:12 244s | 244s 389 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:392:12 244s | 244s 392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:399:12 244s | 244s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:402:12 244s | 244s 402 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:409:12 244s | 244s 409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:412:12 244s | 244s 412 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:419:12 244s | 244s 419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:422:12 244s | 244s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:432:12 244s | 244s 432 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:435:12 244s | 244s 435 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:442:12 244s | 244s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:445:12 244s | 244s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:453:12 244s | 244s 453 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:456:12 244s | 244s 456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:464:12 244s | 244s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:467:12 244s | 244s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:474:12 244s | 244s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:477:12 244s | 244s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:486:12 244s | 244s 486 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:489:12 244s | 244s 489 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:496:12 244s | 244s 496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:499:12 244s | 244s 499 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:506:12 244s | 244s 506 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:509:12 244s | 244s 509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:516:12 244s | 244s 516 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:519:12 244s | 244s 519 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:526:12 244s | 244s 526 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:529:12 244s | 244s 529 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:536:12 244s | 244s 536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:539:12 244s | 244s 539 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:546:12 244s | 244s 546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:549:12 244s | 244s 549 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:558:12 244s | 244s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:561:12 244s | 244s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:568:12 244s | 244s 568 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:571:12 244s | 244s 571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:578:12 244s | 244s 578 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:581:12 244s | 244s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:589:12 244s | 244s 589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:592:12 244s | 244s 592 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:600:12 244s | 244s 600 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:603:12 244s | 244s 603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:610:12 244s | 244s 610 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:613:12 244s | 244s 613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:620:12 244s | 244s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:623:12 244s | 244s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:632:12 244s | 244s 632 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:635:12 244s | 244s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:642:12 244s | 244s 642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:645:12 244s | 244s 645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:652:12 244s | 244s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:655:12 244s | 244s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:662:12 244s | 244s 662 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:665:12 244s | 244s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:672:12 244s | 244s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:675:12 244s | 244s 675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:682:12 244s | 244s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:685:12 244s | 244s 685 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:692:12 244s | 244s 692 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:695:12 244s | 244s 695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:703:12 244s | 244s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:706:12 244s | 244s 706 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:713:12 244s | 244s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:716:12 244s | 244s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:724:12 244s | 244s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:727:12 244s | 244s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:735:12 244s | 244s 735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:738:12 244s | 244s 738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:746:12 244s | 244s 746 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:749:12 244s | 244s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:761:12 244s | 244s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:764:12 244s | 244s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:771:12 244s | 244s 771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:774:12 244s | 244s 774 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:781:12 244s | 244s 781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:784:12 244s | 244s 784 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:792:12 244s | 244s 792 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:795:12 244s | 244s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:806:12 244s | 244s 806 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:809:12 244s | 244s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:825:12 244s | 244s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:828:12 244s | 244s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:835:12 244s | 244s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:838:12 244s | 244s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:846:12 244s | 244s 846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:849:12 244s | 244s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:858:12 244s | 244s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:861:12 244s | 244s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:868:12 244s | 244s 868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:871:12 244s | 244s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:895:12 244s | 244s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:898:12 244s | 244s 898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:914:12 244s | 244s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:917:12 244s | 244s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:931:12 244s | 244s 931 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:934:12 244s | 244s 934 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:942:12 244s | 244s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:945:12 244s | 244s 945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:961:12 244s | 244s 961 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:964:12 244s | 244s 964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:973:12 244s | 244s 973 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:976:12 244s | 244s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:984:12 244s | 244s 984 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:987:12 244s | 244s 987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:996:12 244s | 244s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:999:12 244s | 244s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1008:12 244s | 244s 1008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1011:12 244s | 244s 1011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1039:12 244s | 244s 1039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1042:12 244s | 244s 1042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1050:12 244s | 244s 1050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1053:12 244s | 244s 1053 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1061:12 244s | 244s 1061 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1064:12 244s | 244s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1072:12 244s | 244s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1075:12 244s | 244s 1075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1083:12 244s | 244s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1086:12 244s | 244s 1086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1093:12 244s | 244s 1093 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1096:12 244s | 244s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1106:12 244s | 244s 1106 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1109:12 244s | 244s 1109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1117:12 244s | 244s 1117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1120:12 244s | 244s 1120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1128:12 244s | 244s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1131:12 244s | 244s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1139:12 244s | 244s 1139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1142:12 244s | 244s 1142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1151:12 244s | 244s 1151 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1154:12 244s | 244s 1154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1163:12 244s | 244s 1163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1166:12 244s | 244s 1166 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1177:12 244s | 244s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1180:12 244s | 244s 1180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1188:12 244s | 244s 1188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1191:12 244s | 244s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1199:12 244s | 244s 1199 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1202:12 244s | 244s 1202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1210:12 244s | 244s 1210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1213:12 244s | 244s 1213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1221:12 244s | 244s 1221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1224:12 244s | 244s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1231:12 244s | 244s 1231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1234:12 244s | 244s 1234 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1241:12 244s | 244s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1243:12 244s | 244s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1261:12 244s | 244s 1261 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1263:12 244s | 244s 1263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1269:12 244s | 244s 1269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1271:12 244s | 244s 1271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1273:12 244s | 244s 1273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1275:12 244s | 244s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1277:12 244s | 244s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1279:12 244s | 244s 1279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1282:12 244s | 244s 1282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1285:12 244s | 244s 1285 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1292:12 244s | 244s 1292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1295:12 244s | 244s 1295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1303:12 244s | 244s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1306:12 244s | 244s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1318:12 244s | 244s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1321:12 244s | 244s 1321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1333:12 244s | 244s 1333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1336:12 244s | 244s 1336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1343:12 244s | 244s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1346:12 244s | 244s 1346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1353:12 244s | 244s 1353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1356:12 244s | 244s 1356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1363:12 244s | 244s 1363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1366:12 244s | 244s 1366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1377:12 244s | 244s 1377 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1380:12 244s | 244s 1380 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1387:12 244s | 244s 1387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1390:12 244s | 244s 1390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1417:12 244s | 244s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1420:12 244s | 244s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1427:12 244s | 244s 1427 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1430:12 244s | 244s 1430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1439:12 244s | 244s 1439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1442:12 244s | 244s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1449:12 244s | 244s 1449 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1452:12 244s | 244s 1452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1459:12 244s | 244s 1459 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1462:12 244s | 244s 1462 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1470:12 244s | 244s 1470 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1473:12 244s | 244s 1473 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1480:12 244s | 244s 1480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1483:12 244s | 244s 1483 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1491:12 244s | 244s 1491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1494:12 244s | 244s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1502:12 244s | 244s 1502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1505:12 244s | 244s 1505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1512:12 244s | 244s 1512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1515:12 244s | 244s 1515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1522:12 244s | 244s 1522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1525:12 244s | 244s 1525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1533:12 244s | 244s 1533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1536:12 244s | 244s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1543:12 244s | 244s 1543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1546:12 244s | 244s 1546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1553:12 244s | 244s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1556:12 244s | 244s 1556 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1563:12 244s | 244s 1563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1566:12 244s | 244s 1566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1573:12 244s | 244s 1573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1576:12 244s | 244s 1576 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1583:12 244s | 244s 1583 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1586:12 244s | 244s 1586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1604:12 244s | 244s 1604 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1607:12 244s | 244s 1607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1614:12 244s | 244s 1614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1617:12 244s | 244s 1617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1624:12 244s | 244s 1624 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1627:12 244s | 244s 1627 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1634:12 244s | 244s 1634 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1637:12 244s | 244s 1637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1645:12 244s | 244s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1648:12 244s | 244s 1648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1656:12 244s | 244s 1656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1659:12 244s | 244s 1659 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1670:12 244s | 244s 1670 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1673:12 244s | 244s 1673 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1681:12 244s | 244s 1681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1684:12 244s | 244s 1684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1695:12 244s | 244s 1695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1698:12 244s | 244s 1698 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1709:12 244s | 244s 1709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1712:12 244s | 244s 1712 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1725:12 244s | 244s 1725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1728:12 244s | 244s 1728 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1736:12 244s | 244s 1736 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1739:12 244s | 244s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1750:12 244s | 244s 1750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1753:12 244s | 244s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1769:12 244s | 244s 1769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1772:12 244s | 244s 1772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1780:12 244s | 244s 1780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1783:12 244s | 244s 1783 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1791:12 244s | 244s 1791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1794:12 244s | 244s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1802:12 244s | 244s 1802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1805:12 244s | 244s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1814:12 244s | 244s 1814 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1817:12 244s | 244s 1817 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1843:12 244s | 244s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1846:12 244s | 244s 1846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1853:12 244s | 244s 1853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1856:12 244s | 244s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1865:12 244s | 244s 1865 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1868:12 244s | 244s 1868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1875:12 244s | 244s 1875 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1878:12 244s | 244s 1878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1885:12 244s | 244s 1885 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1888:12 244s | 244s 1888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1895:12 244s | 244s 1895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1898:12 244s | 244s 1898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1905:12 244s | 244s 1905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1908:12 244s | 244s 1908 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1915:12 244s | 244s 1915 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1918:12 244s | 244s 1918 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1927:12 244s | 244s 1927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1930:12 244s | 244s 1930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1945:12 244s | 244s 1945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1948:12 244s | 244s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1955:12 244s | 244s 1955 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1958:12 244s | 244s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1965:12 244s | 244s 1965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1968:12 244s | 244s 1968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1976:12 244s | 244s 1976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1979:12 244s | 244s 1979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1987:12 244s | 244s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1990:12 244s | 244s 1990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:1997:12 244s | 244s 1997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2000:12 244s | 244s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2007:12 244s | 244s 2007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2010:12 244s | 244s 2010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2017:12 244s | 244s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2020:12 244s | 244s 2020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2032:12 244s | 244s 2032 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2035:12 244s | 244s 2035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2042:12 244s | 244s 2042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2045:12 244s | 244s 2045 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2052:12 244s | 244s 2052 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2055:12 244s | 244s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2062:12 244s | 244s 2062 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2065:12 244s | 244s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2072:12 244s | 244s 2072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2075:12 244s | 244s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2082:12 244s | 244s 2082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2085:12 244s | 244s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2099:12 244s | 244s 2099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2102:12 244s | 244s 2102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2109:12 244s | 244s 2109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2112:12 244s | 244s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2120:12 244s | 244s 2120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2123:12 244s | 244s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2130:12 244s | 244s 2130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2133:12 244s | 244s 2133 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2140:12 244s | 244s 2140 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2143:12 244s | 244s 2143 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2150:12 244s | 244s 2150 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2153:12 244s | 244s 2153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2168:12 244s | 244s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2171:12 244s | 244s 2171 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2178:12 244s | 244s 2178 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/eq.rs:2181:12 244s | 244s 2181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:9:12 244s | 244s 9 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:19:12 244s | 244s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:30:12 244s | 244s 30 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:44:12 244s | 244s 44 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:61:12 244s | 244s 61 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:73:12 244s | 244s 73 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:85:12 244s | 244s 85 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:180:12 244s | 244s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:191:12 244s | 244s 191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:201:12 244s | 244s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:211:12 244s | 244s 211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:225:12 244s | 244s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:236:12 244s | 244s 236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:259:12 244s | 244s 259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:269:12 244s | 244s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:280:12 244s | 244s 280 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:290:12 244s | 244s 290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:304:12 244s | 244s 304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:507:12 244s | 244s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:518:12 244s | 244s 518 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:530:12 244s | 244s 530 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:543:12 244s | 244s 543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:555:12 244s | 244s 555 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:566:12 244s | 244s 566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:579:12 244s | 244s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:591:12 244s | 244s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:602:12 244s | 244s 602 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:614:12 244s | 244s 614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:626:12 244s | 244s 626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:638:12 244s | 244s 638 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:654:12 244s | 244s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:665:12 244s | 244s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:677:12 244s | 244s 677 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:691:12 244s | 244s 691 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:702:12 244s | 244s 702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:715:12 244s | 244s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:727:12 244s | 244s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:739:12 244s | 244s 739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:750:12 244s | 244s 750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:762:12 244s | 244s 762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:773:12 244s | 244s 773 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:785:12 244s | 244s 785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:799:12 244s | 244s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:810:12 244s | 244s 810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:822:12 244s | 244s 822 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:835:12 244s | 244s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:847:12 244s | 244s 847 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:859:12 244s | 244s 859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:870:12 244s | 244s 870 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:884:12 244s | 244s 884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:895:12 244s | 244s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:906:12 244s | 244s 906 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:917:12 244s | 244s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:929:12 244s | 244s 929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:941:12 244s | 244s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:952:12 244s | 244s 952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:965:12 244s | 244s 965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:976:12 244s | 244s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:990:12 244s | 244s 990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1003:12 244s | 244s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1016:12 244s | 244s 1016 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1038:12 244s | 244s 1038 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1048:12 244s | 244s 1048 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1058:12 244s | 244s 1058 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1070:12 244s | 244s 1070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1089:12 244s | 244s 1089 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1122:12 244s | 244s 1122 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1134:12 244s | 244s 1134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1146:12 244s | 244s 1146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1160:12 244s | 244s 1160 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1172:12 244s | 244s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1203:12 244s | 244s 1203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1222:12 244s | 244s 1222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1245:12 244s | 244s 1245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1258:12 244s | 244s 1258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1291:12 244s | 244s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1306:12 244s | 244s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1318:12 244s | 244s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1332:12 244s | 244s 1332 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1347:12 244s | 244s 1347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1428:12 244s | 244s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1442:12 244s | 244s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1456:12 244s | 244s 1456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1469:12 244s | 244s 1469 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1482:12 244s | 244s 1482 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1494:12 244s | 244s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1510:12 244s | 244s 1510 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1523:12 244s | 244s 1523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1536:12 244s | 244s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1550:12 244s | 244s 1550 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1565:12 244s | 244s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1580:12 244s | 244s 1580 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1598:12 244s | 244s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1612:12 244s | 244s 1612 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1626:12 244s | 244s 1626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1640:12 244s | 244s 1640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1653:12 244s | 244s 1653 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1663:12 244s | 244s 1663 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1675:12 244s | 244s 1675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1717:12 244s | 244s 1717 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1727:12 244s | 244s 1727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1739:12 244s | 244s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1751:12 244s | 244s 1751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1771:12 244s | 244s 1771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1794:12 244s | 244s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1805:12 244s | 244s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1816:12 244s | 244s 1816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1826:12 244s | 244s 1826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1845:12 244s | 244s 1845 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1856:12 244s | 244s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1933:12 244s | 244s 1933 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1944:12 244s | 244s 1944 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1958:12 244s | 244s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1969:12 244s | 244s 1969 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1980:12 244s | 244s 1980 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1992:12 244s | 244s 1992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2004:12 244s | 244s 2004 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2017:12 244s | 244s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2029:12 244s | 244s 2029 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2039:12 244s | 244s 2039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2050:12 244s | 244s 2050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2063:12 244s | 244s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2074:12 244s | 244s 2074 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2086:12 244s | 244s 2086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2098:12 244s | 244s 2098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2108:12 244s | 244s 2108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2119:12 244s | 244s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2141:12 244s | 244s 2141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2152:12 244s | 244s 2152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2163:12 244s | 244s 2163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2174:12 244s | 244s 2174 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2186:12 244s | 244s 2186 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2198:12 244s | 244s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2215:12 244s | 244s 2215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2227:12 244s | 244s 2227 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2245:12 244s | 244s 2245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2263:12 244s | 244s 2263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2290:12 244s | 244s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2303:12 244s | 244s 2303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2320:12 244s | 244s 2320 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2353:12 244s | 244s 2353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2366:12 244s | 244s 2366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2378:12 244s | 244s 2378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2391:12 244s | 244s 2391 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2406:12 244s | 244s 2406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2479:12 244s | 244s 2479 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2490:12 244s | 244s 2490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2505:12 244s | 244s 2505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2515:12 244s | 244s 2515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2525:12 244s | 244s 2525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2533:12 244s | 244s 2533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2543:12 244s | 244s 2543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2551:12 244s | 244s 2551 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2566:12 244s | 244s 2566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2585:12 244s | 244s 2585 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2595:12 244s | 244s 2595 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2606:12 244s | 244s 2606 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2618:12 244s | 244s 2618 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2630:12 244s | 244s 2630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2640:12 244s | 244s 2640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2651:12 244s | 244s 2651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2661:12 244s | 244s 2661 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2681:12 244s | 244s 2681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2689:12 244s | 244s 2689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2699:12 244s | 244s 2699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2709:12 244s | 244s 2709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2720:12 244s | 244s 2720 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2731:12 244s | 244s 2731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2762:12 244s | 244s 2762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2772:12 244s | 244s 2772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2785:12 244s | 244s 2785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2793:12 244s | 244s 2793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2801:12 244s | 244s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2812:12 244s | 244s 2812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2838:12 244s | 244s 2838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2848:12 244s | 244s 2848 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:501:23 244s | 244s 501 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1116:19 244s | 244s 1116 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1285:19 244s | 244s 1285 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1422:19 244s | 244s 1422 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:1927:19 244s | 244s 1927 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2347:19 244s | 244s 2347 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/hash.rs:2473:19 244s | 244s 2473 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:7:12 244s | 244s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:17:12 244s | 244s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:29:12 244s | 244s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:43:12 244s | 244s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:57:12 244s | 244s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:70:12 244s | 244s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:81:12 244s | 244s 81 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:229:12 244s | 244s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:240:12 244s | 244s 240 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:250:12 244s | 244s 250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:262:12 244s | 244s 262 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:277:12 244s | 244s 277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:288:12 244s | 244s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:311:12 244s | 244s 311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:322:12 244s | 244s 322 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:333:12 244s | 244s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:343:12 244s | 244s 343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:356:12 244s | 244s 356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:596:12 244s | 244s 596 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:607:12 244s | 244s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:619:12 244s | 244s 619 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:631:12 244s | 244s 631 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:643:12 244s | 244s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:655:12 244s | 244s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:667:12 244s | 244s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:678:12 244s | 244s 678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:689:12 244s | 244s 689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:701:12 244s | 244s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:713:12 244s | 244s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:725:12 244s | 244s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:742:12 244s | 244s 742 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:753:12 244s | 244s 753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:765:12 244s | 244s 765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:780:12 244s | 244s 780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:791:12 244s | 244s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:804:12 244s | 244s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:816:12 244s | 244s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:829:12 244s | 244s 829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:839:12 244s | 244s 839 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:851:12 244s | 244s 851 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:861:12 244s | 244s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:874:12 244s | 244s 874 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:889:12 244s | 244s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:900:12 244s | 244s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:911:12 244s | 244s 911 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:923:12 244s | 244s 923 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:936:12 244s | 244s 936 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:949:12 244s | 244s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:960:12 244s | 244s 960 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:974:12 244s | 244s 974 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:985:12 244s | 244s 985 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:996:12 244s | 244s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1007:12 244s | 244s 1007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1019:12 244s | 244s 1019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1030:12 244s | 244s 1030 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1041:12 244s | 244s 1041 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1054:12 244s | 244s 1054 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1065:12 244s | 244s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1078:12 244s | 244s 1078 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1090:12 244s | 244s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1102:12 244s | 244s 1102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1121:12 244s | 244s 1121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1131:12 244s | 244s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1141:12 244s | 244s 1141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1152:12 244s | 244s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1170:12 244s | 244s 1170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1205:12 244s | 244s 1205 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1217:12 244s | 244s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1228:12 244s | 244s 1228 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1244:12 244s | 244s 1244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1257:12 244s | 244s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1290:12 244s | 244s 1290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1308:12 244s | 244s 1308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1331:12 244s | 244s 1331 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1343:12 244s | 244s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1378:12 244s | 244s 1378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1396:12 244s | 244s 1396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1407:12 244s | 244s 1407 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1420:12 244s | 244s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1437:12 244s | 244s 1437 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1447:12 244s | 244s 1447 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1542:12 244s | 244s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1559:12 244s | 244s 1559 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1574:12 244s | 244s 1574 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1589:12 244s | 244s 1589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1601:12 244s | 244s 1601 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1613:12 244s | 244s 1613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1630:12 244s | 244s 1630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1642:12 244s | 244s 1642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1655:12 244s | 244s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1669:12 244s | 244s 1669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1687:12 244s | 244s 1687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1702:12 244s | 244s 1702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1721:12 244s | 244s 1721 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1737:12 244s | 244s 1737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1753:12 244s | 244s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1767:12 244s | 244s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1781:12 244s | 244s 1781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1790:12 244s | 244s 1790 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1800:12 244s | 244s 1800 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1811:12 244s | 244s 1811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1859:12 244s | 244s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1872:12 244s | 244s 1872 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1884:12 244s | 244s 1884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1907:12 244s | 244s 1907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1925:12 244s | 244s 1925 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1948:12 244s | 244s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1959:12 244s | 244s 1959 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1970:12 244s | 244s 1970 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1982:12 244s | 244s 1982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2000:12 244s | 244s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2011:12 244s | 244s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2101:12 244s | 244s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2112:12 244s | 244s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2125:12 244s | 244s 2125 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2135:12 244s | 244s 2135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2145:12 244s | 244s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2156:12 244s | 244s 2156 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2167:12 244s | 244s 2167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2179:12 244s | 244s 2179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2191:12 244s | 244s 2191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2201:12 244s | 244s 2201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2212:12 244s | 244s 2212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2225:12 244s | 244s 2225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2236:12 244s | 244s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2247:12 244s | 244s 2247 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2259:12 244s | 244s 2259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2269:12 244s | 244s 2269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2279:12 244s | 244s 2279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2298:12 244s | 244s 2298 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2308:12 244s | 244s 2308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2319:12 244s | 244s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2330:12 244s | 244s 2330 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2342:12 244s | 244s 2342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2355:12 244s | 244s 2355 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2373:12 244s | 244s 2373 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2385:12 244s | 244s 2385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2400:12 244s | 244s 2400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2419:12 244s | 244s 2419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2448:12 244s | 244s 2448 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2460:12 244s | 244s 2460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2474:12 244s | 244s 2474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2509:12 244s | 244s 2509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2524:12 244s | 244s 2524 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2535:12 244s | 244s 2535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2547:12 244s | 244s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2563:12 244s | 244s 2563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2648:12 244s | 244s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2660:12 244s | 244s 2660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2676:12 244s | 244s 2676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2686:12 244s | 244s 2686 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2696:12 244s | 244s 2696 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2705:12 244s | 244s 2705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2714:12 244s | 244s 2714 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2723:12 244s | 244s 2723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2737:12 244s | 244s 2737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2755:12 244s | 244s 2755 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2765:12 244s | 244s 2765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2775:12 244s | 244s 2775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2787:12 244s | 244s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2799:12 244s | 244s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2809:12 244s | 244s 2809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2819:12 244s | 244s 2819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2829:12 244s | 244s 2829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2852:12 244s | 244s 2852 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2861:12 244s | 244s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2871:12 244s | 244s 2871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2880:12 244s | 244s 2880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2891:12 244s | 244s 2891 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2902:12 244s | 244s 2902 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2935:12 244s | 244s 2935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2945:12 244s | 244s 2945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2957:12 244s | 244s 2957 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2966:12 244s | 244s 2966 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2975:12 244s | 244s 2975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2987:12 244s | 244s 2987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:3011:12 244s | 244s 3011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:3021:12 244s | 244s 3021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:590:23 244s | 244s 590 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1199:19 244s | 244s 1199 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1372:19 244s | 244s 1372 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:1536:19 244s | 244s 1536 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2095:19 244s | 244s 2095 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2503:19 244s | 244s 2503 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/gen/debug.rs:2642:19 244s | 244s 2642 | #[cfg(syn_no_non_exhaustive)] 244s | ^^^^^^^^^^^^^^^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1065:12 244s | 244s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1072:12 244s | 244s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1083:12 244s | 244s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1090:12 244s | 244s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1100:12 244s | 244s 1100 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1116:12 244s | 244s 1116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1126:12 244s | 244s 1126 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1291:12 244s | 244s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1299:12 244s | 244s 1299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1303:12 244s | 244s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/parse.rs:1311:12 244s | 244s 1311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/reserved.rs:29:12 244s | 244s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: unexpected `cfg` condition name: `doc_cfg` 244s --> /tmp/tmp.LTEQ5jwnZK/registry/syn-1.0.109/src/reserved.rs:39:12 244s | 244s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 244s | ^^^^^^^ 244s | 244s = help: consider using a Cargo feature instead 244s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 244s [lints.rust] 244s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 244s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 244s = note: see for more information about checking conditional configuration 244s 244s warning: `wait-timeout` (lib) generated 3 warnings (1 duplicate) 244s Compiling thiserror v1.0.69 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --cap-lints warn` 244s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 244s 1, 2 or 3 byte search and single substring search. 244s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: `memchr` (lib) generated 1 warning (1 duplicate) 245s Compiling minimal-lexical v0.2.1 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=061c55d7bafd6059 -C extra-filename=-061c55d7bafd6059 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: `minimal-lexical` (lib) generated 1 warning (1 duplicate) 245s Compiling fixedbitset v0.4.2 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/fixedbitset-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=4f27d8f507162a0c -C extra-filename=-4f27d8f507162a0c --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: `fixedbitset` (lib) generated 1 warning (1 duplicate) 245s Compiling bit-vec v0.8.0 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/bit-vec-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/bit-vec-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/bit-vec-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=f5a472a8e3d383f4 -C extra-filename=-f5a472a8e3d383f4 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: unexpected `cfg` condition value: `borsh` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:102:7 245s | 245s 102 | #[cfg(feature = "borsh")] 245s | ^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `borsh` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s = note: `#[warn(unexpected_cfgs)]` on by default 245s 245s warning: unexpected `cfg` condition value: `miniserde` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:104:7 245s | 245s 104 | #[cfg(feature = "miniserde")] 245s | ^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `miniserde` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `nanoserde` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:106:7 245s | 245s 106 | #[cfg(feature = "nanoserde")] 245s | ^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `nanoserde` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:108:7 245s | 245s 108 | #[cfg(feature = "nanoserde")] 245s | ^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `borsh` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:238:5 245s | 245s 238 | feature = "borsh", 245s | ^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `borsh` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `miniserde` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:242:5 245s | 245s 242 | feature = "miniserde", 245s | ^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `miniserde` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: unexpected `cfg` condition value: `nanoserde` 245s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:246:5 245s | 245s 246 | feature = "nanoserde", 245s | ^^^^^^^^^^^^^^^^^^^^^ 245s | 245s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 245s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 245s = note: see for more information about checking conditional configuration 245s 245s warning: `bit-vec` (lib) generated 8 warnings (1 duplicate) 245s Compiling quick-error v2.0.1 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets :Colin Kiegel ' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write. 245s ' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/quick-error' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-error CARGO_PKG_README='' CARGO_PKG_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name quick_error --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/quick-error-2.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=78f4ccd4ae208433 -C extra-filename=-78f4ccd4ae208433 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: `quick-error` (lib) generated 1 warning (1 duplicate) 245s Compiling rusty-fork v0.3.0 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rusty_fork CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rusty-fork-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rusty-fork-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Cross-platform library for running Rust tests in sub-processes using a 245s fork-like interface. 245s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty-fork CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/altsysrq/rusty-fork' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name rusty_fork --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/rusty-fork-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="timeout"' --cfg 'feature="wait-timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "timeout", "wait-timeout"))' -C metadata=50649851fa84c472 -C extra-filename=-50649851fa84c472 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern fnv=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern quick_error=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libquick_error-78f4ccd4ae208433.rmeta --extern tempfile=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern wait_timeout=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwait_timeout-c8041ffbea216b96.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 245s warning: `rusty-fork` (lib) generated 1 warning (1 duplicate) 245s Compiling bit-set v0.8.0 245s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/bit-set-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/bit-set-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/bit-set-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=89b3c1c57b5a03ce -C extra-filename=-89b3c1c57b5a03ce --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bit_vec=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 246s warning: `bit-set` (lib) generated 1 warning (1 duplicate) 246s Compiling petgraph v0.6.4 246s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/petgraph-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="graphmap"' --cfg 'feature="matrix_graph"' --cfg 'feature="stable_graph"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=11faea72e600ec28 -C extra-filename=-11faea72e600ec28 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern fixedbitset=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libfixedbitset-4f27d8f507162a0c.rmeta --extern indexmap=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 246s warning: unexpected `cfg` condition value: `quickcheck` 246s --> /usr/share/cargo/registry/petgraph-0.6.4/src/lib.rs:149:7 246s | 246s 149 | #[cfg(feature = "quickcheck")] 246s | ^^^^^^^^^^^^^^^^^^^^^^ 246s | 246s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 246s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 246s = note: see for more information about checking conditional configuration 246s = note: `#[warn(unexpected_cfgs)]` on by default 246s 246s warning: use of deprecated method `indexmap::IndexMap::::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior. 246s --> /usr/share/cargo/registry/petgraph-0.6.4/src/graphmap.rs:370:33 246s | 246s 370 | let weight = self.edges.remove(&Self::edge_key(a, b)); 246s | ^^^^^^ 246s | 246s = note: `#[warn(deprecated)]` on by default 246s 247s warning: method `node_bound_with_dummy` is never used 247s --> /usr/share/cargo/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 247s | 247s 106 | trait WithDummy: NodeIndexable { 247s | --------- method in this trait 247s 107 | fn dummy_idx(&self) -> usize; 247s 108 | fn node_bound_with_dummy(&self) -> usize; 247s | ^^^^^^^^^^^^^^^^^^^^^ 247s | 247s = note: `#[warn(dead_code)]` on by default 247s 247s warning: field `first_error` is never read 247s --> /usr/share/cargo/registry/petgraph-0.6.4/src/csr.rs:134:5 247s | 247s 133 | pub struct EdgesNotSorted { 247s | -------------- field in this struct 247s 134 | first_error: (usize, usize), 247s | ^^^^^^^^^^^ 247s | 247s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 247s 247s warning: `petgraph` (lib) generated 5 warnings (1 duplicate) 247s Compiling nom v7.1.3 247s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=40d655e2fb328781 -C extra-filename=-40d655e2fb328781 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern memchr=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern minimal_lexical=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libminimal_lexical-061c55d7bafd6059.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 247s warning: unexpected `cfg` condition value: `cargo-clippy` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:375:13 247s | 247s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 247s | ^^^^^^^^^^^^^^^^^^^^^^^^ 247s | 247s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 247s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 247s = note: see for more information about checking conditional configuration 247s = note: `#[warn(unexpected_cfgs)]` on by default 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:379:12 247s | 247s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = 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` 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:391:12 247s | 247s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:418:14 247s | 247s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unused import: `self::str::*` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:439:9 247s | 247s 439 | pub use self::str::*; 247s | ^^^^^^^^^^^^ 247s | 247s = note: `#[warn(unused_imports)]` on by default 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:49:12 247s | 247s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:96:12 247s | 247s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:340:12 247s | 247s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:357:12 247s | 247s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:374:12 247s | 247s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:392:12 247s | 247s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:409:12 247s | 247s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 247s warning: unexpected `cfg` condition name: `nightly` 247s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:430:12 247s | 247s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 247s | ^^^^^^^ 247s | 247s = help: consider using a Cargo feature instead 247s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 247s [lints.rust] 247s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 247s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 247s = note: see for more information about checking conditional configuration 247s 248s warning: `nom` (lib) generated 14 warnings (1 duplicate) 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 248s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 248s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 248s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 248s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 248s Compiling rand v0.8.5 248s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 248s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=ef125e0fa8f0a0b9 -C extra-filename=-ef125e0fa8f0a0b9 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_core=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 248s | 248s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s = note: `#[warn(unexpected_cfgs)]` on by default 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 248s | 248s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 248s | ^^^^^^^ 248s | 248s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 248s | 248s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `features` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 248s | 248s 162 | #[cfg(features = "nightly")] 248s | ^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: see for more information about checking conditional configuration 248s help: there is a config with a similar name and value 248s | 248s 162 | #[cfg(feature = "nightly")] 248s | ~~~~~~~ 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 248s | 248s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 248s | 248s 156 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 248s | 248s 158 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 248s | 248s 160 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 248s | 248s 162 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 248s | 248s 165 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 248s | 248s 167 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 248s | 248s 169 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 248s | 248s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 248s | 248s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 248s | 248s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 248s | 248s 112 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 248s | 248s 142 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 248s | 248s 144 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 248s | 248s 146 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 248s | 248s 148 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 248s | 248s 150 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 248s | 248s 152 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 248s | 248s 155 | feature = "simd_support", 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 248s | 248s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 248s | 248s 144 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `std` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 248s | 248s 235 | #[cfg(not(std))] 248s | ^^^ help: found config with similar value: `feature = "std"` 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 248s | 248s 363 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 248s | 248s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 248s | 248s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 248s | 248s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 248s | 248s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 248s | 248s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 248s | 248s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 248s | 248s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 248s | ^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `std` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 248s | 248s 291 | #[cfg(not(std))] 248s | ^^^ help: found config with similar value: `feature = "std"` 248s ... 248s 359 | scalar_float_impl!(f32, u32); 248s | ---------------------------- in this macro invocation 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 248s 248s warning: unexpected `cfg` condition name: `std` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 248s | 248s 291 | #[cfg(not(std))] 248s | ^^^ help: found config with similar value: `feature = "std"` 248s ... 248s 360 | scalar_float_impl!(f64, u64); 248s | ---------------------------- in this macro invocation 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 248s | 248s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 248s | 248s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 248s | 248s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 248s | 248s 572 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 248s | 248s 679 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 248s | 248s 687 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 248s | 248s 696 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 248s | 248s 706 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 248s | 248s 1001 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 248s | 248s 1003 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 248s | 248s 1005 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 248s | 248s 1007 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 248s | 248s 1010 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 248s | 248s 1012 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition value: `simd_support` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 248s | 248s 1014 | #[cfg(feature = "simd_support")] 248s | ^^^^^^^^^^^^^^^^^^^^^^^^ 248s | 248s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 248s = help: consider adding `simd_support` as a feature in `Cargo.toml` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 248s | 248s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 248s | 248s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 248s | 248s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 248s | 248s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 248s | 248s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 248s | 248s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 248s | 248s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 248s | 248s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 248s | 248s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 248s | 248s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 248s warning: unexpected `cfg` condition name: `doc_cfg` 248s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 248s | 248s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 248s | ^^^^^^^ 248s | 248s = help: consider using a Cargo feature instead 248s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 248s [lints.rust] 248s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 248s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 248s = note: see for more information about checking conditional configuration 248s 249s warning: trait `Float` is never used 249s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 249s | 249s 238 | pub(crate) trait Float: Sized { 249s | ^^^^^ 249s | 249s = note: `#[warn(dead_code)]` on by default 249s 249s warning: associated items `lanes`, `extract`, and `replace` are never used 249s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 249s | 249s 245 | pub(crate) trait FloatAsSIMD: Sized { 249s | ----------- associated items in this trait 249s 246 | #[inline(always)] 249s 247 | fn lanes() -> usize { 249s | ^^^^^ 249s ... 249s 255 | fn extract(self, index: usize) -> Self { 249s | ^^^^^^^ 249s ... 249s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 249s | ^^^^^^^ 249s 249s warning: method `all` is never used 249s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 249s | 249s 266 | pub(crate) trait BoolAsSIMD: Sized { 249s | ---------- method in this trait 249s 267 | fn any(self) -> bool; 249s 268 | fn all(self) -> bool; 249s | ^^^ 249s 249s warning: `rand` (lib) generated 66 warnings (1 duplicate) 249s Compiling wayland-protocols v0.31.2 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the officials wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wayland_protocols --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "staging", "unstable", "wayland-client", "wayland-server"))' -C metadata=6292a1e35f0caeff -C extra-filename=-6292a1e35f0caeff --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-8b07d04095a99f1a.rmeta --extern wayland_client=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-69d200d40a456413.rmeta --extern wayland_scanner=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-8f7ec6b112151e57.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 249s warning: `syn` (lib) generated 1851 warnings (270 duplicates) 249s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_PROCESS=1 CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.LTEQ5jwnZK/target/debug/build/nix-18c9c6ab59c87315/build-script-build` 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 249s [nix 0.29.0] cargo:rustc-cfg=linux 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 249s [nix 0.29.0] cargo:rustc-cfg=linux_android 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 249s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 249s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=0a13ea327a69f660 -C extra-filename=-0a13ea327a69f660 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 249s warning: unexpected `cfg` condition name: `has_total_cmp` 249s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 249s | 249s 2305 | #[cfg(has_total_cmp)] 249s | ^^^^^^^^^^^^^ 249s ... 249s 2325 | totalorder_impl!(f64, i64, u64, 64); 249s | ----------------------------------- in this macro invocation 249s | 249s = 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` 249s = help: consider using a Cargo feature instead 249s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 249s [lints.rust] 249s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 249s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 249s = note: see for more information about checking conditional configuration 249s = note: `#[warn(unexpected_cfgs)]` on by default 249s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 249s 249s warning: unexpected `cfg` condition name: `has_total_cmp` 249s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 249s | 249s 2311 | #[cfg(not(has_total_cmp))] 249s | ^^^^^^^^^^^^^ 249s ... 249s 2325 | totalorder_impl!(f64, i64, u64, 64); 249s | ----------------------------------- in this macro invocation 249s | 249s = help: consider using a Cargo feature instead 249s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 249s [lints.rust] 249s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 249s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 249s = note: see for more information about checking conditional configuration 249s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 249s 249s warning: unexpected `cfg` condition name: `has_total_cmp` 249s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 249s | 249s 2305 | #[cfg(has_total_cmp)] 249s | ^^^^^^^^^^^^^ 249s ... 249s 2326 | totalorder_impl!(f32, i32, u32, 32); 249s | ----------------------------------- in this macro invocation 249s | 249s = help: consider using a Cargo feature instead 249s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 249s [lints.rust] 249s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 249s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 249s = note: see for more information about checking conditional configuration 249s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 249s 249s warning: unexpected `cfg` condition name: `has_total_cmp` 249s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 249s | 249s 2311 | #[cfg(not(has_total_cmp))] 249s | ^^^^^^^^^^^^^ 249s ... 249s 2326 | totalorder_impl!(f32, i32, u32, 32); 249s | ----------------------------------- in this macro invocation 249s | 249s = help: consider using a Cargo feature instead 249s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 249s [lints.rust] 249s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 249s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 249s = note: see for more information about checking conditional configuration 249s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 249s 250s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 250s Compiling rand_xorshift v0.3.0 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/rand_xorshift-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/rand_xorshift-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator 250s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rngs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name rand_xorshift --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/rand_xorshift-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "serde1"))' -C metadata=6f9a9169531a5b9a -C extra-filename=-6f9a9169531a5b9a --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern rand_core=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 250s warning: `rand_xorshift` (lib) generated 1 warning (1 duplicate) 250s Compiling thiserror-impl v1.0.69 250s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 251s warning: `wayland-protocols` (lib) generated 1 warning (1 duplicate) 251s Compiling lazy_static v1.5.0 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/lazy_static-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 251s warning: elided lifetime has a name 251s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 251s | 251s 26 | pub fn get(&'static self, f: F) -> &T 251s | ^ this elided lifetime gets resolved as `'static` 251s | 251s = note: `#[warn(elided_named_lifetimes)]` on by default 251s help: consider specifying it explicitly 251s | 251s 26 | pub fn get(&'static self, f: F) -> &'static T 251s | +++++++ 251s 251s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 251s Compiling regex-syntax v0.8.5 251s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 252s Compiling unarray v0.1.4 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unarray CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/unarray-0.1.4 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/unarray-0.1.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for working with uninitialized arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unarray CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cameron1024/unarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name unarray --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/unarray-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4bc01abf17def2c3 -C extra-filename=-4bc01abf17def2c3 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 252s warning: `unarray` (lib) generated 1 warning (1 duplicate) 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/thiserror-1.0.69/src/lib.rs --error-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=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern thiserror_impl=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 252s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 252s Compiling wayland-protocols-wlr v0.2.0 252s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols_wlr CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-wlr-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-wlr-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the WLR wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols-wlr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wayland_protocols_wlr --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/wayland-protocols-wlr-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "wayland-client", "wayland-server"))' -C metadata=75ad1a06abae96d4 -C extra-filename=-75ad1a06abae96d4 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-8b07d04095a99f1a.rmeta --extern wayland_client=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-69d200d40a456413.rmeta --extern wayland_protocols=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-6292a1e35f0caeff.rmeta --extern wayland_scanner=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-8f7ec6b112151e57.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 254s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 254s Compiling proptest v1.6.0 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/proptest-1.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/proptest-1.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Hypothesis-like property-based testing and shrinking. 254s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.6.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name proptest --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/proptest-1.6.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="bit-set"' --cfg 'feature="default"' --cfg 'feature="fork"' --cfg 'feature="lazy_static"' --cfg 'feature="regex-syntax"' --cfg 'feature="rusty-fork"' --cfg 'feature="std"' --cfg 'feature="tempfile"' --cfg 'feature="timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic64bit", "bit-set", "default", "default-code-coverage", "fork", "handle-panics", "lazy_static", "no_std", "regex-syntax", "rusty-fork", "std", "tempfile", "timeout", "unstable"))' -C metadata=4bfa1843376ba424 -C extra-filename=-4bfa1843376ba424 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bit_set=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbit_set-89b3c1c57b5a03ce.rmeta --extern bit_vec=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern lazy_static=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern num_traits=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-0a13ea327a69f660.rmeta --extern rand=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand-ef125e0fa8f0a0b9.rmeta --extern rand_chacha=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_xorshift=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librand_xorshift-6f9a9169531a5b9a.rmeta --extern regex_syntax=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --extern rusty_fork=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/librusty_fork-50649851fa84c472.rmeta --extern tempfile=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern unarray=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libunarray-4bc01abf17def2c3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 254s warning: unexpected `cfg` condition value: `attr-macro` 254s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:91:7 254s | 254s 91 | #[cfg(feature = "attr-macro")] 254s | ^^^^^^^^^^^^^^^^^^^^^^ 254s | 254s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 254s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 254s = note: see for more information about checking conditional configuration 254s = note: `#[warn(unexpected_cfgs)]` on by default 254s 254s warning: unexpected `cfg` condition value: `attr-macro` 254s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:94:7 254s | 254s 94 | #[cfg(feature = "attr-macro")] 254s | ^^^^^^^^^^^^^^^^^^^^^^ 254s | 254s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 254s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 254s = note: see for more information about checking conditional configuration 254s 254s warning: unexpected `cfg` condition value: `hardware-rng` 254s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:487:9 254s | 254s 487 | feature = "hardware-rng" 254s | ^^^^^^^^^^^^^^^^^^^^^^^^ 254s | 254s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 254s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 254s = note: see for more information about checking conditional configuration 254s 254s warning: unexpected `cfg` condition value: `hardware-rng` 254s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:456:13 254s | 254s 456 | feature = "hardware-rng" 254s | ^^^^^^^^^^^^^^^^^^^^^^^^ 254s | 254s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 254s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 254s = note: see for more information about checking conditional configuration 254s 254s warning: `wayland-protocols-wlr` (lib) generated 1 warning (1 duplicate) 254s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps OUT_DIR=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out rustc --crate-name nix --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=0930f78ed5a2e234 -C extra-filename=-0930f78ed5a2e234 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern bitflags=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 256s warning: struct `NoopFailurePersistence` is never constructed 256s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/failure_persistence/noop.rs:19:8 256s | 256s 19 | struct NoopFailurePersistence; 256s | ^^^^^^^^^^^^^^^^^^^^^^ 256s | 256s = note: `NoopFailurePersistence` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis 256s = note: `#[warn(dead_code)]` on by default 256s 256s warning: `nix` (lib) generated 1 warning (1 duplicate) 256s Compiling derive-new v0.5.8 256s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=derive_new CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/derive-new-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/derive-new-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Nick Cameron ' CARGO_PKG_DESCRIPTION='`#[derive(new)]` implements simple constructor functions for structs and enums.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=derive-new CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nrc/derive-new' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name derive_new --edition=2015 /tmp/tmp.LTEQ5jwnZK/registry/derive-new-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d36da1d6c0ebb951 -C extra-filename=-d36da1d6c0ebb951 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 257s Compiling proptest-derive v0.4.0 257s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest_derive CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/proptest-derive-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/proptest-derive-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Mazdak Farrokhzad ' CARGO_PKG_DESCRIPTION='Custom-derive for the Arbitrary trait of proptest. 257s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest-derive/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest-derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name proptest_derive --edition=2018 /tmp/tmp.LTEQ5jwnZK/registry/proptest-derive-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6474c4970bc8d659 -C extra-filename=-6474c4970bc8d659 --out-dir /tmp/tmp.LTEQ5jwnZK/target/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern proc_macro2=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 258s warning: `proptest` (lib) generated 6 warnings (1 duplicate) 258s Compiling tree_magic_mini v3.1.6 258s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tree_magic_mini CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/tree_magic_mini-3.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/tree_magic_mini-3.1.6/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Allison Hancock ' CARGO_PKG_DESCRIPTION='Determines the MIME type of a file by traversing a filetype tree.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tree_magic_mini CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/tree_magic/' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.1.6 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name tree_magic_mini --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/tree_magic_mini-3.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("with-gpl-data"))' -C metadata=242d3fc89e043ebe -C extra-filename=-242d3fc89e043ebe --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern fnv=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern memchr=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern nom=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libnom-40d655e2fb328781.rmeta --extern once_cell=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern petgraph=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libpetgraph-11faea72e600ec28.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 259s Compiling os_pipe v1.2.1 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/tmp/tmp.LTEQ5jwnZK/registry/os_pipe-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.LTEQ5jwnZK/registry/os_pipe-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Jack O'\''Connor' CARGO_PKG_DESCRIPTION='a cross-platform library for opening OS pipes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=os_pipe CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name os_pipe --edition=2021 /tmp/tmp.LTEQ5jwnZK/registry/os_pipe-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="io_safety"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("io_safety"))' -C metadata=3c879989e1f7b2c1 -C extra-filename=-3c879989e1f7b2c1 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 259s warning: `os_pipe` (lib) generated 1 warning (1 duplicate) 259s warning: `tree_magic_mini` (lib) generated 1 warning (1 duplicate) 259s Compiling wl-clipboard-rs v0.8.0 (/usr/share/cargo/registry/wl-clipboard-rs-0.8.0) 259s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wl_clipboard_rs CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.LTEQ5jwnZK/target/debug/deps rustc --crate-name wl_clipboard_rs --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="native_lib"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("dlopen", "native_lib"))' -C metadata=88fdbaf53f2c6312 -C extra-filename=-88fdbaf53f2c6312 --out-dir /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.LTEQ5jwnZK/target/debug/deps --extern derive_new=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libderive_new-d36da1d6c0ebb951.so --extern libc=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rlib --extern log=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern nix=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libnix-0930f78ed5a2e234.rlib --extern os_pipe=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libos_pipe-3c879989e1f7b2c1.rlib --extern proptest=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libproptest-4bfa1843376ba424.rlib --extern proptest_derive=/tmp/tmp.LTEQ5jwnZK/target/debug/deps/libproptest_derive-6474c4970bc8d659.so --extern tempfile=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rlib --extern thiserror=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib --extern tree_magic_mini=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libtree_magic_mini-242d3fc89e043ebe.rlib --extern wayland_backend=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-8b07d04095a99f1a.rlib --extern wayland_client=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-69d200d40a456413.rlib --extern wayland_protocols=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-6292a1e35f0caeff.rlib --extern wayland_protocols_wlr=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols_wlr-75ad1a06abae96d4.rlib --extern wayland_server=/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-8f7ec6b112151e57.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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.LTEQ5jwnZK/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain -L native=/usr/lib/s390x-linux-gnu -L native=/usr/lib/s390x-linux-gnu` 259s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 259s --> src/tests/mod.rs:9:5 259s | 259s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 259s | ^^^^^^^^^^^^^ 259s | 259s = note: `#[warn(deprecated)]` on by default 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 259s --> src/tests/mod.rs:9:20 259s | 259s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 259s | ^^^^^^^^^ 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 259s --> src/tests/mod.rs:9:31 259s | 259s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 259s | ^^^^^^^^^^ 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 259s --> src/tests/mod.rs:43:23 259s | 259s 43 | let poll_fd = epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap(); 259s | ^^^^^^^^^^^^^ 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 259s --> src/tests/mod.rs:47:9 259s | 259s 47 | epoll_ctl( 259s | ^^^^^^^^^ 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 259s --> src/tests/mod.rs:55:9 259s | 259s 55 | epoll_ctl( 259s | ^^^^^^^^^ 259s 259s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 259s --> src/tests/mod.rs:92:27 259s | 259s 92 | let nevents = epoll_wait(self.poll_fd.as_raw_fd(), &mut events, -1).unwrap(); 259s | ^^^^^^^^^^ 259s 259s warning: this function depends on never type fallback being `()` 259s --> src/copy.rs:554:5 259s | 259s 554 | pub fn serve(mut self) -> Result<(), Error> { 259s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 259s | 259s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in Rust 2024 and in a future release in all editions! 259s = note: for more information, see issue #123748 259s = help: specify the types explicitly 259s note: in edition 2024, the requirement `!: FromIterator<()>` will fail 259s --> src/copy.rs:591:36 259s | 259s 591 | let result: Result<_, _> = results.into_iter().collect(); 259s | ^^^^^^^^^^^^^^^^^^^ 259s = note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default 259s help: use `()` annotations to avoid fallback changes 259s | 259s 591 | let result: Result<(), _> = results.into_iter().collect(); 259s | ~~ 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/tests/state.rs:37:24 259s | 259s 37 | #[derive(Debug, Clone, Arbitrary)] 259s | ^-------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_OfferInfo` 259s 38 | pub enum OfferInfo { 259s | --------- `OfferInfo` is not local 259s | 259s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: `#[warn(non_local_definitions)]` on by default 259s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/tests/state.rs:73:33 259s | 259s 73 | #[derive(Debug, Clone, Default, Arbitrary)] 259s | ^-------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_SeatInfo` 259s 74 | pub struct SeatInfo { 259s | -------- `SeatInfo` is not local 259s | 259s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/tests/state.rs:79:33 259s | 259s 79 | #[derive(Debug, Clone, Default, Arbitrary)] 259s | ^-------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_State` 259s 80 | pub struct State { 259s | ----- `State` is not local 259s | 259s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/copy.rs:36:25 259s | 259s 36 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 259s | ^------------------------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 259s 37 | pub enum ClipboardType { 259s | ------------- `ClipboardType` is not local 259s | 259s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/copy.rs:55:25 259s | 259s 55 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 259s | ^------------------------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_MimeType` 259s 56 | pub enum MimeType { 259s | -------- `MimeType` is not local 259s | 259s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/copy.rs:68:25 259s | 259s 68 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 259s | ^------------------------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_Source` 259s 69 | pub enum Source { 259s | ------ `Source` is not local 259s | 259s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 259s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 259s --> src/paste.rs:28:25 259s | 259s 28 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 259s | ^------------------------- 259s | | 259s | `Arbitrary` is not local 259s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 259s 29 | pub enum ClipboardType { 259s | ------------- `ClipboardType` is not local 259s | 259s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 259s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 259s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 259s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 259s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 259s 263s warning: `wl-clipboard-rs` (lib test) generated 16 warnings (1 duplicate) (run `cargo fix --lib -p wl-clipboard-rs --tests` to apply 1 suggestion) 263s Finished `test` profile [unoptimized + debuginfo] target(s) in 34.51s 263s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.LTEQ5jwnZK/target/s390x-unknown-linux-gnu/debug/deps/wl_clipboard_rs-88fdbaf53f2c6312` 263s 263s running 23 tests 263s test tests::copy::clear_test ... ok 263s test tests::copy::copy_large ... ok 263s test tests::copy::copy_multi_no_additional_text_mime_types_test ... ok 263s test tests::copy::copy_multi_test ... ok 263s test tests::copy::copy_test ... ok 263s test tests::paste::get_contents_randomized ... ok 263s test tests::paste::get_contents_test ... ok 263s test tests::paste::get_contents_wrong_mime_type ... ok 263s test tests::paste::get_mime_types_empty_clipboard ... ok 263s test tests::paste::get_mime_types_no_data_control ... ok 263s test tests::paste::get_mime_types_no_data_control_2 ... ok 263s test tests::paste::get_mime_types_no_seats ... ok 264s test tests::paste::get_mime_types_primary ... ok 264s test tests::paste::get_mime_types_randomized ... ok 264s test tests::paste::get_mime_types_specific_seat ... ok 264s test tests::paste::get_mime_types_test ... ok 264s test tests::utils::is_primary_selection_supported_data_control_v1 ... ok 264s test tests::utils::is_primary_selection_supported_no_data_control ... ok 264s test tests::utils::is_primary_selection_supported_no_seats ... ok 264s test tests::utils::is_primary_selection_supported_primary_selection_unsupported ... ok 264s test tests::utils::is_primary_selection_supported_test ... ok 264s test tests::utils::supports_v2_seats ... ok 264s test tests::copy::copy_randomized ... ok 264s 264s test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.51s 264s 264s /tmp/autopkgtest.4cJX46/wrapper.sh: checking for leaked background processes... 264s /tmp/autopkgtest.4cJX46/wrapper.sh: waiting for tee/cat subprocesses... 264s /tmp/autopkgtest.4cJX46/wrapper.sh: cleaning up... 264s /tmp/autopkgtest.4cJX46/wrapper.sh: Exit status: 0 264s autopkgtest: DBG: testbed command exited with code 0 265s autopkgtest [07:35:53]: test librust-wl-clipboard-rs-dev:native_lib: -----------------------] 265s autopkgtest: DBG: testbed executing test finished with exit status 0 265s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Anative_lib-stdout /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Anative_lib-stdout 265s autopkgtest: DBG: got reply from testbed: ok 265s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Anative_lib-stderr /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3Anative_lib-stderr 267s autopkgtest: DBG: got reply from testbed: ok 267s librust-wl-clipboard-rs-dev:native_lib PASS 267s autopkgtest [07:35:54]: test librust-wl-clipboard-rs-dev:native_lib: - - - - - - - - - - results - - - - - - - - - - 267s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3Anative_lib-artifacts/ /tmp/autopkgtest-work.oh9g3vy4/out/artifacts/ 267s autopkgtest: DBG: got reply from testbed: ok 267s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:native_lib-artifacts', '/tmp/autopkgtest.4cJX46/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 267s autopkgtest: DBG: testbed command exited with code 0 267s autopkgtest [07:35:55]: test librust-wl-clipboard-rs-dev:: preparing testbed 267s autopkgtest: DBG: testbed reset: modified=False, deps_installed=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'], deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 267s autopkgtest: DBG: Binaries: no registered binaries, not publishing anything 267s autopkgtest: DBG: install_deps: deps_new=['dh-cargo (>= 18)', 'librust-proptest-1+default-dev', 'librust-proptest-derive-0.4+default-dev', 'librust-wayland-protocols-0.31+default-dev', 'librust-wayland-protocols-0.31+server-dev', 'librust-wayland-protocols-wlr-0.2+default-dev', 'librust-wayland-protocols-wlr-0.2+server-dev', 'librust-wayland-server-0.31+default-dev', 'librust-wl-clipboard-rs-dev'] 267s autopkgtest: DBG: install-deps: satisfying dh-cargo (>= 18), librust-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev 267s autopkgtest: DBG: can use apt-get on testbed: True 267s 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-proptest-1+default-dev, librust-proptest-derive-0.4+default-dev, librust-wayland-protocols-0.31+default-dev, librust-wayland-protocols-0.31+server-dev, librust-wayland-protocols-wlr-0.2+default-dev, librust-wayland-protocols-wlr-0.2+server-dev, librust-wayland-server-0.31+default-dev, librust-wl-clipboard-rs-dev'], kind install, sout raw, serr pipe, env ['DEBIAN_FRONTEND=noninteractive', 'APT_LISTBUGS_FRONTEND=none', 'APT_LISTCHANGES_FRONTEND=none'] 267s Reading package lists... 268s Building dependency tree... 268s Reading state information... 268s Starting pkgProblemResolver with broken count: 0 268s Starting 2 pkgProblemResolver with broken count: 0 268s Done 268s 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: testbed command ['dpkg-query', '--show', '-f', '${Status}', 'librust-wl-clipboard-rs-dev'], kind short, sout pipe, serr pipe, env [] 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: testbed command ['sh', '-ec', "dpkg-query --show -f '${Package}\\t${Version}\\n' > /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-packages.all"], kind short, sout raw, serr pipe, env [] 268s autopkgtest: DBG: testbed command exited with code 0 268s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3A-packages.all /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3A-packages.all 268s autopkgtest: DBG: got reply from testbed: ok 268s autopkgtest: DBG: testbed command ['test', '-e', '/tmp/autopkgtest.4cJX46/build.9ba/src'], kind short, sout raw, serr raw, env [] 269s autopkgtest: DBG: testbed command exited with code 0 269s autopkgtest: DBG: copydown: tb path /tmp/autopkgtest.4cJX46/build.9ba/src already exists 269s autopkgtest [07:35:57]: test librust-wl-clipboard-rs-dev:: /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features 269s autopkgtest [07:35:57]: test librust-wl-clipboard-rs-dev:: [----------------------- 269s autopkgtest: DBG: testbed command ['su', '-s', '/bin/bash', 'ubuntu', '-c', "set -e; exec /tmp/autopkgtest.4cJX46/wrapper.sh --debug --artifacts=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-artifacts --chdir=/tmp/autopkgtest.4cJX46/build.9ba/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.4cJX46/librust-wl-clipboard-rs-dev:-stderr --stdout=/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-stdout --tmp=/tmp/autopkgtest.4cJX46/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 wl-clipboard-rs 0.8.0 --all-targets --no-default-features'"], kind test, sout raw, serr raw, env [] 269s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_ARTIFACTS: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-artifacts 269s /tmp/autopkgtest.4cJX46/wrapper.sh: changing to directory: /tmp/autopkgtest.4cJX46/build.9ba/src 269s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TESTBED_ARCH=s390x 269s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: AUTOPKGTEST_TEST_ARCH=s390x 269s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEB_BUILD_OPTIONS=parallel=2 269s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: DEBIAN_FRONTEND=noninteractive 269s /tmp/autopkgtest.4cJX46/wrapper.sh: setting environment: LANG=C.UTF-8 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LANGUAGE 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ADDRESS 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_ALL 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_COLLATE 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_CTYPE 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_IDENTIFICATION 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MEASUREMENT 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MESSAGES 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_MONETARY 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NAME 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_NUMERIC 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_PAPER 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TELEPHONE 269s /tmp/autopkgtest.4cJX46/wrapper.sh: unsetting environment: LC_TIME 269s /tmp/autopkgtest.4cJX46/wrapper.sh: will create pid file: /tmp/autopkgtest_script_pid 269s /tmp/autopkgtest.4cJX46/wrapper.sh: pretending to be a login shell 269s /tmp/autopkgtest.4cJX46/wrapper.sh: will write standard error to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-stderr 269s /tmp/autopkgtest.4cJX46/wrapper.sh: will write stdout to /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-stdout 269s /tmp/autopkgtest.4cJX46/wrapper.sh: creating AUTOPKGTEST_TMP: /tmp/autopkgtest.4cJX46/autopkgtest_tmp 269s /tmp/autopkgtest.4cJX46/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 269s /tmp/autopkgtest.4cJX46/wrapper.sh: command to run: bash -ec /usr/share/cargo/bin/cargo-auto-test wl-clipboard-rs 0.8.0 --all-targets --no-default-features 269s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.OwweLmwLca/out to stdout and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-stdout 269s /tmp/autopkgtest.4cJX46/wrapper.sh: copying /tmp/tmp.OwweLmwLca/err to standard error and file: /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-stdout 269s /tmp/autopkgtest.4cJX46/wrapper.sh: writing script pid 14582 to /tmp/autopkgtest_script_pid 269s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 269s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 269s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 269s debian cargo wrapper: linking /usr/share/cargo/registry/* into /tmp/tmp.2RIEl7KkVf/registry/ 269s debian cargo wrapper: options, profiles, parallel, lto: ['parallel=2'] [] ['-j2'] 0 269s debian cargo wrapper: rust_type, gnu_type: s390x-unknown-linux-gnu, s390x-linux-gnu 269s debian cargo wrapper: unsetting RUSTFLAGS and assuming it will be (or already was) added to $CARGO_HOME/config.toml 269s 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'],) {} 269s Compiling proc-macro2 v1.0.92 269s Compiling libc v0.2.169 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 269s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=dc781cb7c1ee5a21 -C extra-filename=-dc781cb7c1ee5a21 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/libc-dc781cb7c1ee5a21 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=3832f39696f3f5db -C extra-filename=-3832f39696f3f5db --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/proc-macro2-3832f39696f3f5db -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/debug/build/proc-macro2-b8c68c67c59c8657/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/proc-macro2-3832f39696f3f5db/build-script-build` 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(fuzzing) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_is_available) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_byte_character) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_literal_c_string) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(no_source_text) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(proc_macro_span) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_backtrace) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_nightly_testing) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(procmacro2_semver_exempt) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(randomize_layout) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(span_locations) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(super_unstable) 269s [proc-macro2 1.0.92] cargo:rustc-check-cfg=cfg(wrap_proc_macro) 269s [proc-macro2 1.0.92] cargo:rerun-if-changed=build/probe.rs 269s [proc-macro2 1.0.92] cargo:rustc-cfg=wrap_proc_macro 269s [proc-macro2 1.0.92] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 269s Compiling unicode-ident v1.0.13 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unicode_ident CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/unicode-ident-1.0.13 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/unicode-ident-1.0.13/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='(MIT OR Apache-2.0) AND Unicode-DFS-2016' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-ident CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/unicode-ident' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.13 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name unicode_ident --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/unicode-ident-1.0.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=5d182fe9243248fe -C extra-filename=-5d182fe9243248fe --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 269s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 269s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/libc-dc781cb7c1ee5a21/build-script-build` 269s [libc 0.2.169] cargo:rerun-if-changed=build.rs 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay :Alex Crichton ' CARGO_PKG_DESCRIPTION='A substitute implementation of the compiler'\''s `proc_macro` API to decouple token-based libraries from the procedural macro use case.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro2' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.92 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=92 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/debug/build/proc-macro2-b8c68c67c59c8657/out rustc --crate-name proc_macro2 --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/proc-macro2-1.0.92/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "nightly", "proc-macro", "span-locations"))' -C metadata=ccebc93d1de6cfe5 -C extra-filename=-ccebc93d1de6cfe5 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern unicode_ident=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg wrap_proc_macro --check-cfg 'cfg(fuzzing)' --check-cfg 'cfg(no_is_available)' --check-cfg 'cfg(no_literal_byte_character)' --check-cfg 'cfg(no_literal_c_string)' --check-cfg 'cfg(no_source_text)' --check-cfg 'cfg(proc_macro_span)' --check-cfg 'cfg(procmacro2_backtrace)' --check-cfg 'cfg(procmacro2_nightly_testing)' --check-cfg 'cfg(procmacro2_semver_exempt)' --check-cfg 'cfg(randomize_layout)' --check-cfg 'cfg(span_locations)' --check-cfg 'cfg(super_unstable)' --check-cfg 'cfg(wrap_proc_macro)'` 269s [libc 0.2.169] cargo:rerun-if-env-changed=RUST_LIBC_UNSTABLE_FREEBSD_VERSION 269s [libc 0.2.169] cargo:rustc-cfg=freebsd11 269s [libc 0.2.169] cargo:rustc-cfg=libc_const_extern_fn 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(emscripten_new_stat_abi) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(espidf_time32) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd10) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd11) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd12) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd13) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd14) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(freebsd15) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(gnu_time64_abi) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_const_extern_fn) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_deny_warnings) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_thread_local) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(libc_ctest) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx")) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_env,values("illumos","wasi","aix","ohos")) 269s [libc 0.2.169] cargo:rustc-check-cfg=cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky")) 269s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc. 269s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/libc' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=libc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.2.169 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=169 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/libc-bd02b9c7a9cce7ac/out rustc --crate-name libc --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/libc-0.2.169/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("align", "const-extern-fn", "default", "extra_traits", "rustc-dep-of-std", "rustc-std-workspace-core", "std", "use_std"))' -C metadata=cf2521928ac070dc -C extra-filename=-cf2521928ac070dc --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg freebsd11 --cfg libc_const_extern_fn --check-cfg 'cfg(emscripten_new_stat_abi)' --check-cfg 'cfg(espidf_time32)' --check-cfg 'cfg(freebsd10)' --check-cfg 'cfg(freebsd11)' --check-cfg 'cfg(freebsd12)' --check-cfg 'cfg(freebsd13)' --check-cfg 'cfg(freebsd14)' --check-cfg 'cfg(freebsd15)' --check-cfg 'cfg(gnu_time64_abi)' --check-cfg 'cfg(libc_const_extern_fn)' --check-cfg 'cfg(libc_deny_warnings)' --check-cfg 'cfg(libc_thread_local)' --check-cfg 'cfg(libc_ctest)' --check-cfg 'cfg(target_os,values("switch","aix","ohos","hurd","rtems","visionos","nuttx"))' --check-cfg 'cfg(target_env,values("illumos","wasi","aix","ohos"))' --check-cfg 'cfg(target_arch,values("loongarch64","mips32r6","mips64r6","csky"))'` 270s warning: unused import: `crate::ntptimeval` 270s --> /usr/share/cargo/registry/libc-0.2.169/src/unix/linux_like/linux/gnu/b64/mod.rs:5:5 270s | 270s 5 | use crate::ntptimeval; 270s | ^^^^^^^^^^^^^^^^^ 270s | 270s = note: `#[warn(unused_imports)]` on by default 270s 270s Compiling quote v1.0.37 270s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/quote-1.0.37 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/quote-1.0.37/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Quasi-quoting macro quote'\!'(...)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quote CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=1.0.37 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name quote --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/quote-1.0.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "proc-macro"))' -C metadata=dc92c6f25ee0f0c6 -C extra-filename=-dc92c6f25ee0f0c6 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --cap-lints warn` 270s Compiling bitflags v2.8.0 270s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/bitflags-2.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/bitflags-2.8.0/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags. 270s ' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=2.8.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name bitflags --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/bitflags-2.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "bytemuck", "compiler_builtins", "core", "example_generated", "rustc-dep-of-std", "serde", "std"))' -C metadata=65f3f529c7b65778 -C extra-filename=-65f3f529c7b65778 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 271s warning: unstable feature specified for `-Ctarget-feature`: `backchain` 271s | 271s = note: this feature is not stably supported; its behavior can change in the future 271s 272s warning: `bitflags` (lib) generated 1 warning 272s Compiling rustix v0.38.37 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=9d0cdc24ab31bf88 -C extra-filename=-9d0cdc24ab31bf88 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/rustix-9d0cdc24ab31bf88 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 272s warning: `libc` (lib) generated 2 warnings (1 duplicate) 272s Compiling errno v0.3.8 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/errno-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/errno-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Chris Wong ' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/lambda-fairy/rust-errno' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name errno --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/errno-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=a511b7e92317ca2a -C extra-filename=-a511b7e92317ca2a --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 272s warning: unexpected `cfg` condition value: `bitrig` 272s --> /usr/share/cargo/registry/errno-0.3.8/src/unix.rs:77:13 272s | 272s 77 | target_os = "bitrig", 272s | ^^^^^^^^^^^^^^^^^^^^ 272s | 272s = note: expected values for `target_os` are: `aix`, `android`, `cuda`, `dragonfly`, `emscripten`, `espidf`, `freebsd`, `fuchsia`, `haiku`, `hermit`, `horizon`, `hurd`, `illumos`, `ios`, `l4re`, `linux`, `macos`, `netbsd`, `none`, `nto`, `nuttx`, `openbsd`, `psp`, `psx`, `redox`, `rtems`, `solaris`, `solid_asp3`, `teeos`, `trusty`, `tvos`, `uefi`, `unknown`, `visionos`, and `vita` and 6 more 272s = note: see for more information about checking conditional configuration 272s = note: `#[warn(unexpected_cfgs)]` on by default 272s 272s warning: `errno` (lib) generated 2 warnings (1 duplicate) 272s Compiling linux-raw-sys v0.4.14 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=linux_raw_sys CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/linux-raw-sys-0.4.14 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/linux-raw-sys-0.4.14/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='Generated bindings for Linux'\''s userspace API' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linux-raw-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/linux-raw-sys' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.4.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name linux_raw_sys --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/linux-raw-sys-0.4.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="general"' --cfg 'feature="if_ether"' --cfg 'feature="ioctl"' --cfg 'feature="net"' --cfg 'feature="netlink"' --cfg 'feature="no_std"' --cfg 'feature="prctl"' --cfg 'feature="xdp"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("bootparam", "compiler_builtins", "core", "default", "elf", "errno", "general", "if_arp", "if_ether", "if_packet", "io_uring", "ioctl", "loop_device", "mempolicy", "net", "netlink", "no_std", "prctl", "rustc-dep-of-std", "std", "system", "xdp"))' -C metadata=df2e18974a94e4e2 -C extra-filename=-df2e18974a94e4e2 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 272s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_ALLOC=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_LIBC_EXTRA_TRAITS=1 CARGO_FEATURE_NET=1 CARGO_FEATURE_PROCESS=1 CARGO_FEATURE_STD=1 CARGO_FEATURE_USE_LIBC_AUXV=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/rustix-9d0cdc24ab31bf88/build-script-build` 272s [rustix 0.38.37] cargo:rerun-if-changed=build.rs 272s [rustix 0.38.37] cargo:rustc-cfg=static_assertions 272s [rustix 0.38.37] cargo:rustc-cfg=libc 272s [rustix 0.38.37] cargo:rustc-cfg=linux_like 272s [rustix 0.38.37] cargo:rustc-cfg=linux_kernel 272s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_EXPERIMENTAL_ASM 272s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_RUSTIX_USE_LIBC 272s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_USE_LIBC 272s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_FEATURE_RUSTC_DEP_OF_STD 272s [rustix 0.38.37] cargo:rerun-if-env-changed=CARGO_CFG_MIRI 272s Compiling cfg-if v1.0.0 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/cfg-if-1.0.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/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] 272s parameters. Structured like an if-else chain, the first matching branch is the 272s item that gets emitted. 272s ' 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.2RIEl7KkVf/target/debug/deps rustc --crate-name cfg_if --edition=2018 /tmp/tmp.2RIEl7KkVf/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.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 272s warning: `cfg-if` (lib) generated 1 warning (1 duplicate) 272s Compiling syn v2.0.96 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/syn-2.0.96 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/syn-2.0.96/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.0.96 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=96 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name syn --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/syn-2.0.96/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "visit", "visit-mut"))' -C metadata=b2618e2f2b5bd1a7 -C extra-filename=-b2618e2f2b5bd1a7 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn` 272s warning: `linux-raw-sys` (lib) generated 1 warning (1 duplicate) 272s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rustix CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman :Jakub Konka ' CARGO_PKG_DESCRIPTION='Safe Rust bindings to POSIX/Unix/Linux/Winsock-like syscalls' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/bytecodealliance/rustix' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.38.37 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=38 CARGO_PKG_VERSION_PATCH=37 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/rustix-0c8a821743305781/out rustc --crate-name rustix --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/rustix-0.38.37/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(alloc_c_string)' --check-cfg 'cfg(alloc_ffi)' --check-cfg 'cfg(apple)' --check-cfg 'cfg(asm_experimental_arch)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(core_c_str)' --check-cfg 'cfg(core_ffi_c)' --check-cfg 'cfg(core_intrinsics)' --check-cfg 'cfg(criterion)' --check-cfg 'cfg(document_experimental_runtime_api)' --check-cfg 'cfg(fix_y2038)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(libc)' --check-cfg 'cfg(linux_kernel)' --check-cfg 'cfg(linux_like)' --check-cfg 'cfg(linux_raw)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(rustc_attrs)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(staged_api)' --check-cfg 'cfg(static_assertions)' --check-cfg 'cfg(thumb_mode)' --check-cfg 'cfg(wasi)' --check-cfg 'cfg(wasi_ext)' --check-cfg 'cfg(target_arch, values("xtensa"))' --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="libc-extra-traits"' --cfg 'feature="net"' --cfg 'feature="process"' --cfg 'feature="std"' --cfg 'feature="use-libc-auxv"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all-apis", "alloc", "cc", "compiler_builtins", "core", "default", "event", "fs", "io_uring", "itoa", "libc", "libc-extra-traits", "libc_errno", "linux_4_11", "linux_latest", "mm", "mount", "net", "once_cell", "param", "pipe", "process", "procfs", "pty", "rand", "runtime", "rustc-dep-of-std", "shm", "std", "stdio", "system", "termios", "thread", "time", "try_close", "use-explicitly-provided-auxv", "use-libc", "use-libc-auxv"))' -C metadata=c0552d419ea96692 -C extra-filename=-c0552d419ea96692 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern libc_errno=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liberrno-a511b7e92317ca2a.rmeta --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern linux_raw_sys=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblinux_raw_sys-df2e18974a94e4e2.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg static_assertions --cfg libc --cfg linux_like --cfg linux_kernel` 274s Compiling pkg-config v0.3.31 274s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=pkg_config CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/pkg-config-0.3.31 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/pkg-config-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A library to run the pkg-config system tool at build time in order to be used in 274s Cargo build scripts. 274s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pkg-config CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/pkg-config-rs' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name pkg_config --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/pkg-config-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=f20a1c89e2145860 -C extra-filename=-f20a1c89e2145860 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 274s warning: unreachable expression 274s --> /tmp/tmp.2RIEl7KkVf/registry/pkg-config-0.3.31/src/lib.rs:596:9 274s | 274s 592 | return true; 274s | ----------- any code following this expression is unreachable 274s ... 274s 596 | / match self.targeted_env_var("PKG_CONFIG_ALLOW_CROSS") { 274s 597 | | // don't use pkg-config if explicitly disabled 274s 598 | | Some(ref val) if val == "0" => false, 274s 599 | | Some(_) => true, 274s ... | 274s 605 | | } 274s 606 | | } 274s | |_________^ unreachable expression 274s | 274s = note: `#[warn(unreachable_code)]` on by default 274s 275s warning: `pkg-config` (lib) generated 1 warning 275s Compiling shlex v1.3.0 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=shlex CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/shlex-1.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/shlex-1.3.0/Cargo.toml CARGO_PKG_AUTHORS='comex :Fenhl :Adrian Taylor :Alex Touchet :Daniel Parks :Garrett Berg ' CARGO_PKG_DESCRIPTION='Split a string into shell words, like Python'\''s shlex.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=shlex CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/comex/rust-shlex' CARGO_PKG_RUST_VERSION=1.46.0 CARGO_PKG_VERSION=1.3.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name shlex --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/shlex-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=4618b096a8cc03b4 -C extra-filename=-4618b096a8cc03b4 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 275s warning: unexpected `cfg` condition name: `manual_codegen_check` 275s --> /tmp/tmp.2RIEl7KkVf/registry/shlex-1.3.0/src/bytes.rs:353:12 275s | 275s 353 | #[cfg_attr(manual_codegen_check, inline(never))] 275s | ^^^^^^^^^^^^^^^^^^^^ 275s | 275s = 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` 275s = help: consider using a Cargo feature instead 275s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 275s [lints.rust] 275s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(manual_codegen_check)'] } 275s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(manual_codegen_check)");` to the top of the `build.rs` 275s = note: see for more information about checking conditional configuration 275s = note: `#[warn(unexpected_cfgs)]` on by default 275s 275s warning: `shlex` (lib) generated 1 warning 275s Compiling cc v1.1.14 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/cc-1.1.14 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/cc-1.1.14/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native 275s C compiler to compile native C code into a static archive to be linked into Rust 275s code. 275s ' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/cc-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/cc-rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.1.14 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name cc --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/cc-1.1.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("jobserver", "parallel"))' -C metadata=6f10d64c68dac13e -C extra-filename=-6f10d64c68dac13e --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern shlex=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libshlex-4618b096a8cc03b4.rmeta --cap-lints warn` 275s warning: `rustix` (lib) generated 1 warning (1 duplicate) 275s Compiling wayland-sys v0.31.6 275s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=2e46ab8c73eb7d78 -C extra-filename=-2e46ab8c73eb7d78 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/wayland-sys-2e46ab8c73eb7d78 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern pkg_config=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libpkg_config-f20a1c89e2145860.rlib --cap-lints warn` 276s Compiling getrandom v0.2.15 276s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/getrandom-0.2.15 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/getrandom-0.2.15/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='A small cross-platform library for retrieving random data from system source' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=getrandom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name getrandom --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/getrandom-0.2.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("compiler_builtins", "core", "custom", "linux_disable_fallback", "rdrand", "rustc-dep-of-std", "std", "test-in-browser"))' -C metadata=ed47f71499f7e17d -C extra-filename=-ed47f71499f7e17d --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern cfg_if=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 276s warning: unexpected `cfg` condition value: `js` 276s --> /usr/share/cargo/registry/getrandom-0.2.15/src/lib.rs:334:25 276s | 276s 334 | } else if #[cfg(all(feature = "js", 276s | ^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `compiler_builtins`, `core`, `custom`, `linux_disable_fallback`, `rdrand`, `rustc-dep-of-std`, `std`, and `test-in-browser` 276s = help: consider adding `js` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s = note: `#[warn(unexpected_cfgs)]` on by default 276s 276s warning: `getrandom` (lib) generated 2 warnings (1 duplicate) 276s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/wayland-sys-2e46ab8c73eb7d78/build-script-build` 276s Compiling memchr v2.7.4 276s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 276s 1, 2 or 3 byte search and single substring search. 276s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8314979525fd8612 -C extra-filename=-8314979525fd8612 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 276s Compiling quick-xml v0.36.1 276s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_xml CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/quick-xml-0.36.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/quick-xml-0.36.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='High performance xml reader and writer' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-xml CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/tafia/quick-xml' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.36.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=36 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name quick_xml --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/quick-xml-0.36.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "async-tokio", "default", "encoding", "encoding_rs", "escape-html", "overlapped-lists", "serde", "serde-types", "serialize", "tokio"))' -C metadata=44842dc15f032f00 -C extra-filename=-44842dc15f032f00 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern memchr=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libmemchr-8314979525fd8612.rmeta --cap-lints warn` 276s warning: unexpected `cfg` condition value: `document-features` 276s --> /tmp/tmp.2RIEl7KkVf/registry/quick-xml-0.36.1/src/lib.rs:42:5 276s | 276s 42 | feature = "document-features", 276s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 276s | 276s = note: expected values for `feature` are: `arbitrary`, `async-tokio`, `default`, `encoding`, `encoding_rs`, `escape-html`, `overlapped-lists`, `serde`, `serde-types`, `serialize`, and `tokio` 276s = help: consider adding `document-features` as a feature in `Cargo.toml` 276s = note: see for more information about checking conditional configuration 276s = note: `#[warn(unexpected_cfgs)]` on by default 276s 276s warning: elided lifetime has a name 276s --> /tmp/tmp.2RIEl7KkVf/registry/quick-xml-0.36.1/src/writer.rs:146:73 276s | 276s 146 | pub fn create_element<'a, N>(&'a mut self, name: N) -> ElementWriter 276s | -- lifetime `'a` declared here ^ this elided lifetime gets resolved as `'a` 276s | 276s = note: `#[warn(elided_named_lifetimes)]` on by default 276s 276s Compiling wayland-backend v0.3.8 276s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=f066b178425c96cd -C extra-filename=-f066b178425c96cd --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/wayland-backend-f066b178425c96cd -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern cc=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libcc-6f10d64c68dac13e.rlib --cap-lints warn` 277s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/wayland-backend-f066b178425c96cd/build-script-build` 277s [wayland-backend 0.3.8] cargo:rustc-check-cfg=cfg(coverage) 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_sys CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-sys CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/wayland-sys-74227c33a3e171d5/out rustc --crate-name wayland_sys --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-sys-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "cursor", "dlopen", "egl", "libc", "memoffset", "once_cell", "server"))' -C metadata=6c49a04e2d373a8d -C extra-filename=-6c49a04e2d373a8d --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 277s warning: `wayland-sys` (lib) generated 1 warning (1 duplicate) 277s Compiling zerocopy-derive v0.7.34 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy_derive CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/zerocopy-derive-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/zerocopy-derive-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Custom derive for traits from the zerocopy crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy-derive CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name zerocopy_derive --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/zerocopy-derive-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=421d942aa06bb9ce -C extra-filename=-421d942aa06bb9ce --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 277s warning: `quick-xml` (lib) generated 2 warnings 277s Compiling io-lifetimes v2.0.3 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=d1ef77a5c9c658a7 -C extra-filename=-d1ef77a5c9c658a7 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/io-lifetimes-d1ef77a5c9c658a7 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 277s Compiling downcast-rs v1.2.0 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=downcast_rs CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/downcast-rs-1.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/downcast-rs-1.2.0/Cargo.toml CARGO_PKG_AUTHORS='Ashish Myles :Runji Wang ' CARGO_PKG_DESCRIPTION='Trait object downcasting support using only safe Rust. It supports type 277s parameters, associated types, and type constraints. 277s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=downcast-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/marcianx/downcast-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.2.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name downcast_rs --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/downcast-rs-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=fedf5fded6411e19 -C extra-filename=-fedf5fded6411e19 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 277s warning: `downcast-rs` (lib) generated 1 warning (1 duplicate) 277s Compiling byteorder v1.5.0 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/byteorder-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/byteorder-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant ' CARGO_PKG_DESCRIPTION='Library for reading/writing numbers in big-endian and little-endian.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/byteorder' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byteorder CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name byteorder --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/byteorder-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "std"))' -C metadata=89ebf31d1f97ee77 -C extra-filename=-89ebf31d1f97ee77 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 277s warning: `byteorder` (lib) generated 1 warning (1 duplicate) 277s Compiling smallvec v1.13.2 277s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/smallvec-1.13.2 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/smallvec-1.13.2/Cargo.toml CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION=''\''Small vector'\'' optimization: store up to a small number of items on the stack' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name smallvec --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/smallvec-1.13.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="const_generics"' --cfg 'feature="const_new"' --cfg 'feature="union"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "const_generics", "const_new", "debugger_visualizer", "drain_filter", "drain_keep_rest", "may_dangle", "serde", "specialization", "union", "write"))' -C metadata=ef72c43926f60793 -C extra-filename=-ef72c43926f60793 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 278s warning: `smallvec` (lib) generated 1 warning (1 duplicate) 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_backend CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Low-level bindings to the Wayland protocol' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-backend CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.3.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/wayland-backend-58a81578585e865a/out rustc --crate-name wayland_backend --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-backend-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client_system", "dlopen", "log", "raw-window-handle", "server_system"))' -C metadata=64ae102d56f82b13 -C extra-filename=-64ae102d56f82b13 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern downcast_rs=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern rustix=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern smallvec=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libsmallvec-ef72c43926f60793.rmeta --extern wayland_sys=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_sys-6c49a04e2d373a8d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(coverage)'` 278s Compiling zerocopy v0.7.34 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=zerocopy CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/zerocopy-0.7.34 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/zerocopy-0.7.34/Cargo.toml CARGO_PKG_AUTHORS='Joshua Liebow-Feeser ' CARGO_PKG_DESCRIPTION='Utilities for zero-copy parsing and serialization' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='BSD-2-Clause OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=zerocopy CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/google/zerocopy' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.7.34 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=34 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name zerocopy --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/zerocopy-0.7.34/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="byteorder"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="simd"' --cfg 'feature="zerocopy-derive"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("__internal_use_only_features_that_work_on_stable", "alloc", "byteorder", "default", "derive", "simd", "simd-nightly", "zerocopy-derive"))' -C metadata=3741d75984c9d7af -C extra-filename=-3741d75984c9d7af --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern byteorder=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbyteorder-89ebf31d1f97ee77.rmeta --extern zerocopy_derive=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libzerocopy_derive-421d942aa06bb9ce.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/util.rs:597:32 278s | 278s 597 | let remainder = t.addr() % mem::align_of::(); 278s | ^^^^^^^^^^^^^^^^^^ 278s | 278s note: the lint level is defined here 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:174:5 278s | 278s 174 | unused_qualifications, 278s | ^^^^^^^^^^^^^^^^^^^^^ 278s help: remove the unnecessary path segments 278s | 278s 597 - let remainder = t.addr() % mem::align_of::(); 278s 597 + let remainder = t.addr() % align_of::(); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:333:35 278s | 278s 333 | const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 278s | ^^^^^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 333 - const POINTER_WIDTH_BITS: usize = mem::size_of::() * 8; 278s 333 + const POINTER_WIDTH_BITS: usize = size_of::() * 8; 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:488:44 278s | 278s 488 | align: match NonZeroUsize::new(mem::align_of::()) { 278s | ^^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 488 - align: match NonZeroUsize::new(mem::align_of::()) { 278s 488 + align: match NonZeroUsize::new(align_of::()) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:492:49 278s | 278s 492 | size_info: SizeInfo::Sized { _size: mem::size_of::() }, 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 492 - size_info: SizeInfo::Sized { _size: mem::size_of::() }, 278s 492 + size_info: SizeInfo::Sized { _size: size_of::() }, 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:511:44 278s | 278s 511 | align: match NonZeroUsize::new(mem::align_of::()) { 278s | ^^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 511 - align: match NonZeroUsize::new(mem::align_of::()) { 278s 511 + align: match NonZeroUsize::new(align_of::()) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:517:29 278s | 278s 517 | _elem_size: mem::size_of::(), 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 517 - _elem_size: mem::size_of::(), 278s 517 + _elem_size: size_of::(), 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:1418:19 278s | 278s 1418 | let len = mem::size_of_val(self); 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 1418 - let len = mem::size_of_val(self); 278s 1418 + let len = size_of_val(self); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2714:19 278s | 278s 2714 | let len = mem::size_of_val(self); 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 2714 - let len = mem::size_of_val(self); 278s 2714 + let len = size_of_val(self); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2789:19 278s | 278s 2789 | let len = mem::size_of_val(self); 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 2789 - let len = mem::size_of_val(self); 278s 2789 + let len = size_of_val(self); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2863:27 278s | 278s 2863 | if bytes.len() != mem::size_of_val(self) { 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 2863 - if bytes.len() != mem::size_of_val(self) { 278s 2863 + if bytes.len() != size_of_val(self) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2920:20 278s | 278s 2920 | let size = mem::size_of_val(self); 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 2920 - let size = mem::size_of_val(self); 278s 2920 + let size = size_of_val(self); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:2981:45 278s | 278s 2981 | let start = bytes.len().checked_sub(mem::size_of_val(self))?; 278s | ^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 2981 - let start = bytes.len().checked_sub(mem::size_of_val(self))?; 278s 2981 + let start = bytes.len().checked_sub(size_of_val(self))?; 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4161:27 278s | 278s 4161 | if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4161 - if bytes.len() != mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s 4161 + if bytes.len() != size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4176:26 278s | 278s 4176 | if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4176 - if bytes.len() < mem::size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s 4176 + if bytes.len() < size_of::() || !util::aligned_to::<_, T>(bytes.deref()) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4179:46 278s | 278s 4179 | let (bytes, suffix) = bytes.split_at(mem::size_of::()); 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4179 - let (bytes, suffix) = bytes.split_at(mem::size_of::()); 278s 4179 + let (bytes, suffix) = bytes.split_at(size_of::()); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4194:46 278s | 278s 4194 | let split_at = bytes_len.checked_sub(mem::size_of::())?; 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4194 - let split_at = bytes_len.checked_sub(mem::size_of::())?; 278s 4194 + let split_at = bytes_len.checked_sub(size_of::())?; 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4221:26 278s | 278s 4221 | .checked_rem(mem::size_of::()) 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4221 - .checked_rem(mem::size_of::()) 278s 4221 + .checked_rem(size_of::()) 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4243:34 278s | 278s 4243 | let expected_len = match mem::size_of::().checked_mul(count) { 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4243 - let expected_len = match mem::size_of::().checked_mul(count) { 278s 4243 + let expected_len = match size_of::().checked_mul(count) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4268:34 278s | 278s 4268 | let expected_len = match mem::size_of::().checked_mul(count) { 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4268 - let expected_len = match mem::size_of::().checked_mul(count) { 278s 4268 + let expected_len = match size_of::().checked_mul(count) { 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4795:25 278s | 278s 4795 | let elem_size = mem::size_of::(); 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4795 - let elem_size = mem::size_of::(); 278s 4795 + let elem_size = size_of::(); 278s | 278s 278s warning: unnecessary qualification 278s --> /usr/share/cargo/registry/zerocopy-0.7.34/src/lib.rs:4825:25 278s | 278s 4825 | let elem_size = mem::size_of::(); 278s | ^^^^^^^^^^^^^^^^^ 278s | 278s help: remove the unnecessary path segments 278s | 278s 4825 - let elem_size = mem::size_of::(); 278s 4825 + let elem_size = size_of::(); 278s | 278s 278s warning: `zerocopy` (lib) generated 22 warnings (1 duplicate) 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/io-lifetimes-d1ef77a5c9c658a7/build-script-build` 278s [io-lifetimes 2.0.3] cargo:rerun-if-changed=build.rs 278s Compiling wayland-scanner v0.31.6 278s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_scanner CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-scanner-0.31.6 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-scanner-0.31.6/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Wayland Scanner for generating rust APIs from XML wayland protocol files.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-scanner CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wayland_scanner --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-scanner-0.31.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c58251dd28084e37 -C extra-filename=-c58251dd28084e37 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quick_xml=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquick_xml-44842dc15f032f00.rlib --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern proc_macro --cap-lints warn` 279s warning: `wayland-backend` (lib) generated 1 warning (1 duplicate) 279s Compiling rand_core v0.6.4 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rand_core-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rand_core-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation. 279s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name rand_core --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/rand_core-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "getrandom", "serde", "serde1", "std"))' -C metadata=3c7246ca3f419bbc -C extra-filename=-3c7246ca3f419bbc --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern getrandom=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:38:13 279s | 279s 38 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 279s | ^^^^^^^ 279s | 279s = 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` 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s = note: `#[warn(unexpected_cfgs)]` on by default 279s 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:50:16 279s | 279s 50 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 279s | ^^^^^^^ 279s | 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:64:16 279s | 279s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 279s | ^^^^^^^ 279s | 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/error.rs:75:16 279s | 279s 75 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 279s | ^^^^^^^ 279s | 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/os.rs:46:12 279s | 279s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 279s | ^^^^^^^ 279s | 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s 279s warning: unexpected `cfg` condition name: `doc_cfg` 279s --> /usr/share/cargo/registry/rand_core-0.6.4/src/lib.rs:411:16 279s | 279s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 279s | ^^^^^^^ 279s | 279s = help: consider using a Cargo feature instead 279s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 279s [lints.rust] 279s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 279s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 279s = note: see for more information about checking conditional configuration 279s 279s warning: `rand_core` (lib) generated 7 warnings (1 duplicate) 279s Compiling autocfg v1.1.0 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/autocfg-1.1.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/autocfg-1.1.0/Cargo.toml CARGO_PKG_AUTHORS='Josh Stone ' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.1.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name autocfg --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/autocfg-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=9ebcd9511383083c -C extra-filename=-9ebcd9511383083c --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 279s Compiling once_cell v1.20.2 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/once_cell-1.20.2 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/once_cell-1.20.2/Cargo.toml CARGO_PKG_AUTHORS='Aleksey Kladov ' CARGO_PKG_DESCRIPTION='Single assignment cells and lazy values.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=once_cell CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=1.20.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=20 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name once_cell --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/once_cell-1.20.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="race"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic-polyfill", "critical-section", "default", "parking_lot", "portable-atomic", "race", "std", "unstable"))' -C metadata=f9b984852945e4ac -C extra-filename=-f9b984852945e4ac --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 279s warning: `once_cell` (lib) generated 1 warning (1 duplicate) 279s Compiling syn v1.0.109 279s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/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="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=ae566e665d1cad87 -C extra-filename=-ae566e665d1cad87 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/syn-ae566e665d1cad87 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='' CARGO_FEATURE_CLONE_IMPLS=1 CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_DERIVE=1 CARGO_FEATURE_EXTRA_TRAITS=1 CARGO_FEATURE_FULL=1 CARGO_FEATURE_PARSING=1 CARGO_FEATURE_PRINTING=1 CARGO_FEATURE_PROC_MACRO=1 CARGO_FEATURE_QUOTE=1 CARGO_FEATURE_VISIT=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/debug/build/syn-a11c9578ec111a71/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/syn-ae566e665d1cad87/build-script-build` 280s [syn 1.0.109] cargo:rustc-cfg=syn_disable_nightly_tests 280s Compiling num-traits v0.2.19 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=8f779d9fad25b2ca -C extra-filename=-8f779d9fad25b2ca --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/num-traits-8f779d9fad25b2ca -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern autocfg=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libautocfg-9ebcd9511383083c.rlib --cap-lints warn` 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=io_lifetimes CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3/Cargo.toml CARGO_PKG_AUTHORS='Dan Gohman ' CARGO_PKG_DESCRIPTION='A low-level I/O ownership and borrowing library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=io-lifetimes CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/sunfishcode/io-lifetimes' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.0.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/io-lifetimes-0d8b7a756e49a35e/out rustc --crate-name io_lifetimes --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/io-lifetimes-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("async-std", "close", "default", "libc", "mio", "os_pipe", "socket2", "tokio"))' -C metadata=84d1d842777f0e1a -C extra-filename=-84d1d842777f0e1a --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: unexpected `cfg` condition name: `wasi_ext` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:32:17 280s | 280s 32 | #![cfg_attr(all(wasi_ext, target_os = "wasi"), feature(wasi_ext))] 280s | ^^^^^^^^ 280s | 280s = 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` 280s = help: consider using a Cargo feature instead 280s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 280s [lints.rust] 280s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(wasi_ext)'] } 280s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(wasi_ext)");` to the top of the `build.rs` 280s = note: see for more information about checking conditional configuration 280s = note: `#[warn(unexpected_cfgs)]` on by default 280s 280s warning: unexpected `cfg` condition name: `doc_cfg` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/lib.rs:35:13 280s | 280s 35 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 280s | ^^^^^^^ 280s | 280s = help: consider using a Cargo feature instead 280s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 280s [lints.rust] 280s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 280s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:239:7 280s | 280s 239 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:242:7 280s | 280s 242 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:245:7 280s | 280s 245 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:248:7 280s | 280s 248 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:251:7 280s | 280s 251 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `async_std` 280s --> /usr/share/cargo/registry/io-lifetimes-2.0.3/src/views.rs:254:7 280s | 280s 254 | #[cfg(feature = "async_std")] 280s | ^^^^^^^^^^----------- 280s | | 280s | help: there is a expected value with a similar name: `"async-std"` 280s | 280s = note: expected values for `feature` are: `async-std`, `close`, `default`, `libc`, `mio`, `os_pipe`, `socket2`, and `tokio` 280s = help: consider adding `async_std` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: `io-lifetimes` (lib) generated 9 warnings (1 duplicate) 280s Compiling ppv-lite86 v0.2.20 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/ppv-lite86-0.2.20 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/ppv-lite86-0.2.20/Cargo.toml CARGO_PKG_AUTHORS='The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='Implementation of the crypto-simd API for x86' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ppv-lite86 CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=0.2.20 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name ppv_lite86 --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/ppv-lite86-0.2.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "no_simd", "simd", "std"))' -C metadata=d52b670bf7bd562c -C extra-filename=-d52b670bf7bd562c --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern zerocopy=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libzerocopy-3741d75984c9d7af.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: `ppv-lite86` (lib) generated 1 warning (1 duplicate) 280s Compiling cfg_aliases v0.2.1 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=cfg_aliases CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/cfg_aliases-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/cfg_aliases-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Zicklag ' CARGO_PKG_DESCRIPTION='A tiny utility to help save you a lot of effort with long winded `#[cfg()]` checks.' CARGO_PKG_HOMEPAGE='https://github.com/katharostech/cfg_aliases' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cfg_aliases CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/katharostech/cfg_aliases' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name cfg_aliases --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/cfg_aliases-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--deny=clippy::str_to_string' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=8701cbe9ff8ee006 -C extra-filename=-8701cbe9ff8ee006 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 280s Compiling fastrand v2.1.1 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fastrand CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/fastrand-2.1.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/fastrand-2.1.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina ' CARGO_PKG_DESCRIPTION='A simple and fast random number generator' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fastrand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/fastrand' CARGO_PKG_RUST_VERSION=1.36 CARGO_PKG_VERSION=2.1.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name fastrand --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/fastrand-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=b0f30b63d6f103db -C extra-filename=-b0f30b63d6f103db --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: unexpected `cfg` condition value: `js` 280s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:202:5 280s | 280s 202 | feature = "js" 280s | ^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `alloc`, `default`, and `std` 280s = help: consider adding `js` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s = note: `#[warn(unexpected_cfgs)]` on by default 280s 280s warning: unexpected `cfg` condition value: `js` 280s --> /usr/share/cargo/registry/fastrand-2.1.1/src/global_rng.rs:214:9 280s | 280s 214 | not(feature = "js") 280s | ^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `alloc`, `default`, and `std` 280s = help: consider adding `js` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: `fastrand` (lib) generated 3 warnings (1 duplicate) 280s Compiling equivalent v1.0.1 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=equivalent CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/equivalent-1.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/equivalent-1.0.1/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Traits for key comparison in maps.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=equivalent CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cuviper/equivalent' CARGO_PKG_RUST_VERSION=1.6 CARGO_PKG_VERSION=1.0.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name equivalent --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/equivalent-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=50ee6cd9d9ded5bf -C extra-filename=-50ee6cd9d9ded5bf --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: `equivalent` (lib) generated 1 warning (1 duplicate) 280s Compiling hashbrown v0.14.5 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/hashbrown-0.14.5 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/hashbrown-0.14.5/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras ' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_RUST_VERSION=1.63.0 CARGO_PKG_VERSION=0.14.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name hashbrown --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/hashbrown-0.14.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("ahash", "allocator-api2", "compiler_builtins", "core", "default", "equivalent", "inline-more", "raw", "rayon", "rustc-internal-api", "serde"))' -C metadata=abc055366cb5e49f -C extra-filename=-abc055366cb5e49f --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:14:5 280s | 280s 14 | feature = "nightly", 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s = note: `#[warn(unexpected_cfgs)]` on by default 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:39:13 280s | 280s 39 | #![cfg_attr(feature = "nightly", warn(fuzzy_provenance_casts))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:40:13 280s | 280s 40 | #![cfg_attr(feature = "nightly", allow(internal_features))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/lib.rs:49:7 280s | 280s 49 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:59:7 280s | 280s 59 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/macros.rs:65:11 280s | 280s 65 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:53:11 280s | 280s 53 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:55:11 280s | 280s 55 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:57:7 280s | 280s 57 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3549:7 280s | 280s 3549 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3661:7 280s | 280s 3661 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:3678:11 280s | 280s 3678 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4304:7 280s | 280s 4304 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:4319:11 280s | 280s 4319 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:7:7 280s | 280s 7 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:28:15 280s | 280s 28 | #[cfg(all(not(feature = "nightly"), feature = "allocator-api2"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/alloc.rs:51:15 280s | 280s 51 | #[cfg(not(any(feature = "nightly", feature = "allocator-api2")))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/raw/mod.rs:944:32 280s | 280s 944 | #[cfg(any(feature = "raw", feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `rkyv` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/external_trait_impls/mod.rs:3:7 280s | 280s 3 | #[cfg(feature = "rkyv")] 280s | ^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `rkyv` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:242:11 280s | 280s 242 | #[cfg(not(feature = "nightly"))] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:255:7 280s | 280s 255 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6517:11 280s | 280s 6517 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6523:11 280s | 280s 6523 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6591:11 280s | 280s 6591 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6597:11 280s | 280s 6597 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6651:11 280s | 280s 6651 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/map.rs:6657:11 280s | 280s 6657 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1359:11 280s | 280s 1359 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1365:11 280s | 280s 1365 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1383:11 280s | 280s 1383 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s warning: unexpected `cfg` condition value: `nightly` 280s --> /usr/share/cargo/registry/hashbrown-0.14.5/src/set.rs:1389:11 280s | 280s 1389 | #[cfg(feature = "nightly")] 280s | ^^^^^^^^^^^^^^^^^^^ 280s | 280s = note: expected values for `feature` are: `ahash`, `allocator-api2`, `compiler_builtins`, `core`, `default`, `equivalent`, `inline-more`, `raw`, `rayon`, `rustc-internal-api`, and `serde` 280s = help: consider adding `nightly` as a feature in `Cargo.toml` 280s = note: see for more information about checking conditional configuration 280s 280s Compiling fnv v1.0.7 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/fnv-1.0.7 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/fnv-1.0.7/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='Fowler–Noll–Vo hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 / MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fnv CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-fnv' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.7 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name fnv --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/fnv-1.0.7/lib.rs --error-format=json --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=a68fdaac9d04d051 -C extra-filename=-a68fdaac9d04d051 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 280s warning: `fnv` (lib) generated 1 warning (1 duplicate) 280s Compiling wayland-server v0.31.1 280s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_server CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-server-0.31.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-server-0.31.1/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, server side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-server CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wayland_server --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-server-0.31.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("log"))' -C metadata=234e84df41e54b81 -C extra-filename=-234e84df41e54b81 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern downcast_rs=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libdowncast_rs-fedf5fded6411e19.rmeta --extern io_lifetimes=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libio_lifetimes-84d1d842777f0e1a.rmeta --extern rustix=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_scanner=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 281s warning: `hashbrown` (lib) generated 32 warnings (1 duplicate) 281s Compiling indexmap v2.7.0 281s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/indexmap-2.7.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/indexmap-2.7.0/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/indexmap-rs/indexmap' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.7.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name indexmap --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/indexmap-2.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::style' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "rayon", "serde", "std", "test_debug"))' -C metadata=add402dbf0c10c1b -C extra-filename=-add402dbf0c10c1b --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern equivalent=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libequivalent-50ee6cd9d9ded5bf.rmeta --extern hashbrown=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libhashbrown-abc055366cb5e49f.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 281s warning: unexpected `cfg` condition value: `borsh` 281s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:117:7 281s | 281s 117 | #[cfg(feature = "borsh")] 281s | ^^^^^^^^^^^^^^^^^ 281s | 281s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 281s = help: consider adding `borsh` as a feature in `Cargo.toml` 281s = note: see for more information about checking conditional configuration 281s = note: `#[warn(unexpected_cfgs)]` on by default 281s 281s warning: unexpected `cfg` condition value: `rustc-rayon` 281s --> /usr/share/cargo/registry/indexmap-2.7.0/src/lib.rs:131:7 281s | 281s 131 | #[cfg(feature = "rustc-rayon")] 281s | ^^^^^^^^^^^^^^^^^^^^^^^ 281s | 281s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 281s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition value: `quickcheck` 281s --> /usr/share/cargo/registry/indexmap-2.7.0/src/arbitrary.rs:38:7 281s | 281s 38 | #[cfg(feature = "quickcheck")] 281s | ^^^^^^^^^^^^^^^^^^^^^^ 281s | 281s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 281s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition value: `rustc-rayon` 281s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:128:30 281s | 281s 128 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 281s | ^^^^^^^^^^^^^^^^^^^^^^^ 281s | 281s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 281s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition value: `rustc-rayon` 281s --> /usr/share/cargo/registry/indexmap-2.7.0/src/macros.rs:153:30 281s | 281s 153 | #[cfg(any(feature = "rayon", feature = "rustc-rayon"))] 281s | ^^^^^^^^^^^^^^^^^^^^^^^ 281s | 281s = note: expected values for `feature` are: `arbitrary`, `default`, `rayon`, `serde`, `std`, and `test_debug` 281s = help: consider adding `rustc-rayon` as a feature in `Cargo.toml` 281s = note: see for more information about checking conditional configuration 281s 281s warning: `indexmap` (lib) generated 6 warnings (1 duplicate) 281s Compiling wayland-client v0.31.2 281s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_client CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-client-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-client-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Bindings to the standard C implementation of the wayland protocol, client side.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-client CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wayland_client --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-client-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("log"))' -C metadata=27bc269d25896513 -C extra-filename=-27bc269d25896513 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern rustix=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --extern wayland_backend=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_scanner=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/lib.rs:165:13 281s | 281s 165 | #![cfg_attr(coverage, feature(coverage_attribute))] 281s | ^^^^^^^^ 281s | 281s = 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` 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s = note: `#[warn(unexpected_cfgs)]` on by default 281s 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:123:16 281s | 281s 123 | #[cfg_attr(coverage, coverage(off))] 281s | ^^^^^^^^ 281s | 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:197:16 281s | 281s 197 | #[cfg_attr(coverage, coverage(off))] 281s | ^^^^^^^^ 281s | 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:347:16 281s | 281s 347 | #[cfg_attr(coverage, coverage(off))] 281s | ^^^^^^^^ 281s | 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:589:16 281s | 281s 589 | #[cfg_attr(coverage, coverage(off))] 281s | ^^^^^^^^ 281s | 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s 281s warning: unexpected `cfg` condition name: `coverage` 281s --> /usr/share/cargo/registry/wayland-client-0.31.2/src/event_queue.rs:696:16 281s | 281s 696 | #[cfg_attr(coverage, coverage(off))] 281s | ^^^^^^^^ 281s | 281s = help: consider using a Cargo feature instead 281s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 281s [lints.rust] 281s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage)'] } 281s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(coverage)");` to the top of the `build.rs` 281s = note: see for more information about checking conditional configuration 281s 282s warning: `wayland-server` (lib) generated 1 warning (1 duplicate) 282s Compiling tempfile v3.15.0 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/tempfile-3.15.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/tempfile-3.15.0/Cargo.toml CARGO_PKG_AUTHORS='Steven Allen :The Rust Project Developers:Ashley Mannix :Jason White ' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='https://stebalien.com/projects/tempfile-rs/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=3.15.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name tempfile --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/tempfile-3.15.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="getrandom"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "getrandom", "nightly"))' -C metadata=7264ab473cee172b -C extra-filename=-7264ab473cee172b --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern cfg_if=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern fastrand=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libfastrand-b0f30b63d6f103db.rmeta --extern getrandom=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libgetrandom-ed47f71499f7e17d.rmeta --extern once_cell=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern rustix=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librustix-c0552d419ea96692.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 282s warning: `tempfile` (lib) generated 1 warning (1 duplicate) 282s Compiling nix v0.29.0 282s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=18c9c6ab59c87315 -C extra-filename=-18c9c6ab59c87315 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/nix-18c9c6ab59c87315 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern cfg_aliases=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libcfg_aliases-8701cbe9ff8ee006.rlib --cap-lints warn` 283s Compiling rand_chacha v0.3.1 283s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rand_chacha-0.3.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rand_chacha-0.3.1/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator 283s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name rand_chacha --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/rand_chacha-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde1", "simd", "std"))' -C metadata=c588a1d47b064f6f -C extra-filename=-c588a1d47b064f6f --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern ppv_lite86=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libppv_lite86-d52b670bf7bd562c.rmeta --extern rand_core=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 283s warning: `wayland-client` (lib) generated 7 warnings (1 duplicate) 283s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_STD=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/num-traits-8f779d9fad25b2ca/build-script-build` 283s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 283s [num-traits 0.2.19] | 283s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 283s [num-traits 0.2.19] 283s [num-traits 0.2.19] warning: 1 warning emitted 283s [num-traits 0.2.19] 283s [num-traits 0.2.19] warning: unstable feature specified for `-Ctarget-feature`: `backchain` 283s [num-traits 0.2.19] | 283s [num-traits 0.2.19] = note: this feature is not stably supported; its behavior can change in the future 283s [num-traits 0.2.19] 283s [num-traits 0.2.19] warning: 1 warning emitted 283s [num-traits 0.2.19] 283s [num-traits 0.2.19] cargo:rustc-cfg=has_total_cmp 283s [num-traits 0.2.19] cargo:rerun-if-changed=build.rs 283s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Parser for Rust source code' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=syn CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_RUST_VERSION=1.31 CARGO_PKG_VERSION=1.0.109 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=109 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/debug/build/syn-a11c9578ec111a71/out rustc --crate-name syn --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("clone-impls", "default", "derive", "extra-traits", "fold", "full", "parsing", "printing", "proc-macro", "quote", "visit", "visit-mut"))' -C metadata=d2c69931b37190d8 -C extra-filename=-d2c69931b37190d8 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rmeta --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rmeta --extern unicode_ident=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libunicode_ident-5d182fe9243248fe.rmeta --cap-lints warn --cfg syn_disable_nightly_tests` 283s warning: `rand_chacha` (lib) generated 1 warning (1 duplicate) 283s Compiling wait-timeout v0.2.0 283s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wait_timeout CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wait-timeout-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wait-timeout-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton ' CARGO_PKG_DESCRIPTION='A crate to wait on a child process with a timeout specified across Unix and 283s Windows platforms. 283s ' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wait-timeout CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/wait-timeout' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wait_timeout --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/wait-timeout-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=c8041ffbea216b96 -C extra-filename=-c8041ffbea216b96 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 283s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 283s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:27:23 283s | 283s 27 | use std::sync::{Once, ONCE_INIT, Mutex}; 283s | ^^^^^^^^^ 283s | 283s note: the lint level is defined here 283s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/lib.rs:31:23 283s | 283s 31 | #![deny(missing_docs, warnings)] 283s | ^^^^^^^^ 283s = note: `#[warn(deprecated)]` implied by `#[warn(warnings)]` 283s 283s warning: use of deprecated constant `std::sync::ONCE_INIT`: the `Once::new()` function is now preferred 283s --> /usr/share/cargo/registry/wait-timeout-0.2.0/src/unix.rs:32:21 283s | 283s 32 | static INIT: Once = ONCE_INIT; 283s | ^^^^^^^^^ 283s | 283s help: replace the use of the deprecated constant 283s | 283s 32 | static INIT: Once = Once::new(); 283s | ~~~~~~~~~~~ 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:254:13 283s | 283s 254 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 283s | ^^^^^^^ 283s | 283s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: `#[warn(unexpected_cfgs)]` on by default 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:430:12 283s | 283s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:434:12 283s | 283s 434 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:455:12 283s | 283s 455 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:804:12 283s | 283s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:867:12 283s | 283s 867 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:887:12 283s | 283s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:916:12 283s | 283s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:959:12 283s | 283s 959 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "full"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/group.rs:136:12 283s | 283s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/group.rs:214:12 283s | 283s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/group.rs:269:12 283s | 283s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:561:12 283s | 283s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:569:12 283s | 283s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:881:11 283s | 283s 881 | #[cfg(not(syn_omit_await_from_token_macro))] 283s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_omit_await_from_token_macro` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:883:7 283s | 283s 883 | #[cfg(syn_omit_await_from_token_macro)] 283s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_omit_await_from_token_macro)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_omit_await_from_token_macro)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:394:24 283s | 283s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:398:24 283s | 283s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:406:24 283s | 283s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:414:24 283s | 283s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:418:24 283s | 283s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:426:24 283s | 283s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 556 | / define_punctuation_structs! { 283s 557 | | "_" pub struct Underscore/1 /// `_` 283s 558 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:271:24 283s | 283s 271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:275:24 283s | 283s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:283:24 283s | 283s 283 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:291:24 283s | 283s 291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:295:24 283s | 283s 295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:303:24 283s | 283s 303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:309:24 283s | 283s 309 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:317:24 283s | 283s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s ... 283s 652 | / define_keywords! { 283s 653 | | "abstract" pub struct Abstract /// `abstract` 283s 654 | | "as" pub struct As /// `as` 283s 655 | | "async" pub struct Async /// `async` 283s ... | 283s 704 | | "yield" pub struct Yield /// `yield` 283s 705 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_keywords` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:444:24 283s | 283s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:452:24 283s | 283s 452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:394:24 283s | 283s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:398:24 283s | 283s 398 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:406:24 283s | 283s 406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:414:24 283s | 283s 414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:418:24 283s | 283s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:426:24 283s | 283s 426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 707 | / define_punctuation! { 283s 708 | | "+" pub struct Add/1 /// `+` 283s 709 | | "+=" pub struct AddEq/2 /// `+=` 283s 710 | | "&" pub struct And/1 /// `&` 283s ... | 283s 753 | | "~" pub struct Tilde/1 /// `~` 283s 754 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_punctuation_structs` which comes from the expansion of the macro `define_punctuation` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:503:24 283s | 283s 503 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:507:24 283s | 283s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:515:24 283s | 283s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:523:24 283s | 283s 523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:527:24 283s | 283s 527 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/token.rs:535:24 283s | 283s 535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 283s | ^^^^^^^ 283s ... 283s 756 | / define_delimiters! { 283s 757 | | "{" pub struct Brace /// `{...}` 283s 758 | | "[" pub struct Bracket /// `[...]` 283s 759 | | "(" pub struct Paren /// `(...)` 283s 760 | | " " pub struct Group /// None-delimited group 283s 761 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `define_delimiters` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ident.rs:38:12 283s | 283s 38 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:463:12 283s | 283s 463 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:148:16 283s | 283s 148 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:329:16 283s | 283s 329 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:360:16 283s | 283s 360 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 283s | 283s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:336:1 283s | 283s 336 | / ast_enum_of_structs! { 283s 337 | | /// Content of a compile-time structured attribute. 283s 338 | | /// 283s 339 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 283s ... | 283s 369 | | } 283s 370 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:377:16 283s | 283s 377 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:390:16 283s | 283s 390 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:417:16 283s | 283s 417 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 283s | 283s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:412:1 283s | 283s 412 | / ast_enum_of_structs! { 283s 413 | | /// Element of a compile-time attribute list. 283s 414 | | /// 283s 415 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 283s ... | 283s 425 | | } 283s 426 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:165:16 283s | 283s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:213:16 283s | 283s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:223:16 283s | 283s 223 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:237:16 283s | 283s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:251:16 283s | 283s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:557:16 283s | 283s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:565:16 283s | 283s 565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:573:16 283s | 283s 573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:581:16 283s | 283s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:630:16 283s | 283s 630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:644:16 283s | 283s 644 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/attr.rs:654:16 283s | 283s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:9:16 283s | 283s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:36:16 283s | 283s 36 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 283s | 283s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:25:1 283s | 283s 25 | / ast_enum_of_structs! { 283s 26 | | /// Data stored within an enum variant or struct. 283s 27 | | /// 283s 28 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 283s ... | 283s 47 | | } 283s 48 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:56:16 283s | 283s 56 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:68:16 283s | 283s 68 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:153:16 283s | 283s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:185:16 283s | 283s 185 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 283s | 283s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:173:1 283s | 283s 173 | / ast_enum_of_structs! { 283s 174 | | /// The visibility level of an item: inherited or `pub` or 283s 175 | | /// `pub(restricted)`. 283s 176 | | /// 283s ... | 283s 199 | | } 283s 200 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:207:16 283s | 283s 207 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:218:16 283s | 283s 218 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:230:16 283s | 283s 230 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:246:16 283s | 283s 246 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:275:16 283s | 283s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:286:16 283s | 283s 286 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:327:16 283s | 283s 327 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:299:20 283s | 283s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:315:20 283s | 283s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:423:16 283s | 283s 423 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:436:16 283s | 283s 436 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:445:16 283s | 283s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:454:16 283s | 283s 454 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:467:16 283s | 283s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:474:16 283s | 283s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/data.rs:481:16 283s | 283s 481 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:89:16 283s | 283s 89 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:90:20 283s | 283s 90 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 283s | ^^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 283s | 283s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 283s | ^^^^^^^ 283s | 283s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:14:1 283s | 283s 14 | / ast_enum_of_structs! { 283s 15 | | /// A Rust expression. 283s 16 | | /// 283s 17 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 283s ... | 283s 249 | | } 283s 250 | | } 283s | |_- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:256:16 283s | 283s 256 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:268:16 283s | 283s 268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:281:16 283s | 283s 281 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:294:16 283s | 283s 294 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:307:16 283s | 283s 307 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:321:16 283s | 283s 321 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:334:16 283s | 283s 334 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:346:16 283s | 283s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:359:16 283s | 283s 359 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:373:16 283s | 283s 373 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:387:16 283s | 283s 387 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:400:16 283s | 283s 400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:418:16 283s | 283s 418 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:431:16 283s | 283s 431 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:444:16 283s | 283s 444 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:464:16 283s | 283s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:480:16 283s | 283s 480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:495:16 283s | 283s 495 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:508:16 283s | 283s 508 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:523:16 283s | 283s 523 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:534:16 283s | 283s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:547:16 283s | 283s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:558:16 283s | 283s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:572:16 283s | 283s 572 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:588:16 283s | 283s 588 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:604:16 283s | 283s 604 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:616:16 283s | 283s 616 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:629:16 283s | 283s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:643:16 283s | 283s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:657:16 283s | 283s 657 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:672:16 283s | 283s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:687:16 283s | 283s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:699:16 283s | 283s 699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:711:16 283s | 283s 711 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:723:16 283s | 283s 723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:737:16 283s | 283s 737 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:749:16 283s | 283s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:761:16 283s | 283s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:775:16 283s | 283s 775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:850:16 283s | 283s 850 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:920:16 283s | 283s 920 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:968:16 283s | 283s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:982:16 283s | 283s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:999:16 283s | 283s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1021:16 283s | 283s 1021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1049:16 283s | 283s 1049 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1065:16 283s | 283s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:246:15 283s | 283s 246 | #[cfg(syn_no_non_exhaustive)] 283s | ^^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:784:40 283s | 283s 784 | #[cfg(all(feature = "parsing", not(syn_no_const_vec_new)))] 283s | ^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:838:19 283s | 283s 838 | #[cfg(syn_no_non_exhaustive)] 283s | ^^^^^^^^^^^^^^^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1159:16 283s | 283s 1159 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1880:16 283s | 283s 1880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1975:16 283s | 283s 1975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2001:16 283s | 283s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2063:16 283s | 283s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2084:16 283s | 283s 2084 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2101:16 283s | 283s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2119:16 283s | 283s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2147:16 283s | 283s 2147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2165:16 283s | 283s 2165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2206:16 283s | 283s 2206 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2236:16 283s | 283s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2258:16 283s | 283s 2258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2326:16 283s | 283s 2326 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2349:16 283s | 283s 2349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2372:16 283s | 283s 2372 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2381:16 283s | 283s 2381 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2396:16 283s | 283s 2396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2405:16 283s | 283s 2405 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2414:16 283s | 283s 2414 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2426:16 283s | 283s 2426 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2496:16 283s | 283s 2496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2547:16 283s | 283s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2571:16 283s | 283s 2571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2582:16 283s | 283s 2582 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2594:16 283s | 283s 2594 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2648:16 283s | 283s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2678:16 283s | 283s 2678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2727:16 283s | 283s 2727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2759:16 283s | 283s 2759 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2801:16 283s | 283s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2818:16 283s | 283s 2818 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2832:16 283s | 283s 2832 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2846:16 283s | 283s 2846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2879:16 283s | 283s 2879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s 283s warning: unexpected `cfg` condition name: `doc_cfg` 283s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2292:28 283s | 283s 2292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 283s | ^^^^^^^ 283s ... 283s 2309 | / impl_by_parsing_expr! { 283s 2310 | | ExprAssign, Assign, "expected assignment expression", 283s 2311 | | ExprAssignOp, AssignOp, "expected compound assignment expression", 283s 2312 | | ExprAwait, Await, "expected await expression", 283s ... | 283s 2322 | | ExprType, Type, "expected type ascription expression", 283s 2323 | | } 283s | |_____- in this macro invocation 283s | 283s = help: consider using a Cargo feature instead 283s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 283s [lints.rust] 283s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 283s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 283s = note: see for more information about checking conditional configuration 283s = note: this warning originates in the macro `impl_by_parsing_expr` (in Nightly builds, run with -Z macro-backtrace for more info) 283s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:1248:20 284s | 284s 1248 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "full", feature = "parsing"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2539:23 284s | 284s 2539 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2905:23 284s | 284s 2905 | #[cfg(not(syn_no_const_vec_new))] 284s | ^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2907:19 284s | 284s 2907 | #[cfg(syn_no_const_vec_new)] 284s | ^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2988:16 284s | 284s 2988 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:2998:16 284s | 284s 2998 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3008:16 284s | 284s 3008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3020:16 284s | 284s 3020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3035:16 284s | 284s 3035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3046:16 284s | 284s 3046 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3057:16 284s | 284s 3057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3072:16 284s | 284s 3072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3082:16 284s | 284s 3082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3091:16 284s | 284s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3099:16 284s | 284s 3099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3110:16 284s | 284s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3141:16 284s | 284s 3141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3153:16 284s | 284s 3153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3165:16 284s | 284s 3165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3180:16 284s | 284s 3180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3197:16 284s | 284s 3197 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3211:16 284s | 284s 3211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3233:16 284s | 284s 3233 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3244:16 284s | 284s 3244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3255:16 284s | 284s 3255 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3265:16 284s | 284s 3265 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3275:16 284s | 284s 3275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3291:16 284s | 284s 3291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3304:16 284s | 284s 3304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3317:16 284s | 284s 3317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3328:16 284s | 284s 3328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3338:16 284s | 284s 3338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3348:16 284s | 284s 3348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3358:16 284s | 284s 3358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3367:16 284s | 284s 3367 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3379:16 284s | 284s 3379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3390:16 284s | 284s 3390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3400:16 284s | 284s 3400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3409:16 284s | 284s 3409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3420:16 284s | 284s 3420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3431:16 284s | 284s 3431 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3441:16 284s | 284s 3441 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3451:16 284s | 284s 3451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3460:16 284s | 284s 3460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3478:16 284s | 284s 3478 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3491:16 284s | 284s 3491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3501:16 284s | 284s 3501 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3512:16 284s | 284s 3512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3522:16 284s | 284s 3522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3531:16 284s | 284s 3531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/expr.rs:3544:16 284s | 284s 3544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:296:5 284s | 284s 296 | doc_cfg, 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:307:5 284s | 284s 307 | doc_cfg, 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:318:5 284s | 284s 318 | doc_cfg, 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:14:16 284s | 284s 14 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:35:16 284s | 284s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:23:1 284s | 284s 23 | / ast_enum_of_structs! { 284s 24 | | /// A generic type parameter, lifetime, or const generic: `T: Into`, 284s 25 | | /// `'a: 'b`, `const LEN: usize`. 284s 26 | | /// 284s ... | 284s 45 | | } 284s 46 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:53:16 284s | 284s 53 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:69:16 284s | 284s 69 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:83:16 284s | 284s 83 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:363:20 284s | 284s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 404 | generics_wrapper_impls!(ImplGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:371:20 284s | 284s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 404 | generics_wrapper_impls!(ImplGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:382:20 284s | 284s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 404 | generics_wrapper_impls!(ImplGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:386:20 284s | 284s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 404 | generics_wrapper_impls!(ImplGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:394:20 284s | 284s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 404 | generics_wrapper_impls!(ImplGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:363:20 284s | 284s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 406 | generics_wrapper_impls!(TypeGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:371:20 284s | 284s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 406 | generics_wrapper_impls!(TypeGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:382:20 284s | 284s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 406 | generics_wrapper_impls!(TypeGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:386:20 284s | 284s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 406 | generics_wrapper_impls!(TypeGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:394:20 284s | 284s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 406 | generics_wrapper_impls!(TypeGenerics); 284s | ------------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:363:20 284s | 284s 363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 408 | generics_wrapper_impls!(Turbofish); 284s | ---------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:371:20 284s | 284s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 408 | generics_wrapper_impls!(Turbofish); 284s | ---------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:382:20 284s | 284s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 408 | generics_wrapper_impls!(Turbofish); 284s | ---------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:386:20 284s | 284s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 408 | generics_wrapper_impls!(Turbofish); 284s | ---------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:394:20 284s | 284s 394 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 408 | generics_wrapper_impls!(Turbofish); 284s | ---------------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generics_wrapper_impls` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:426:16 284s | 284s 426 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:475:16 284s | 284s 475 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:470:1 284s | 284s 470 | / ast_enum_of_structs! { 284s 471 | | /// A trait or lifetime used as a bound on a type parameter. 284s 472 | | /// 284s 473 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 284s ... | 284s 479 | | } 284s 480 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:487:16 284s | 284s 487 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:504:16 284s | 284s 504 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:517:16 284s | 284s 517 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:535:16 284s | 284s 535 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:524:1 284s | 284s 524 | / ast_enum_of_structs! { 284s 525 | | /// A single predicate in a `where` clause: `T: Deserialize<'de>`. 284s 526 | | /// 284s 527 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 284s ... | 284s 545 | | } 284s 546 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:553:16 284s | 284s 553 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:570:16 284s | 284s 570 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:583:16 284s | 284s 583 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:347:9 284s | 284s 347 | doc_cfg, 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:597:16 284s | 284s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:660:16 284s | 284s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:687:16 284s | 284s 687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:725:16 284s | 284s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:747:16 284s | 284s 747 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:758:16 284s | 284s 758 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:812:16 284s | 284s 812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:856:16 284s | 284s 856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:905:16 284s | 284s 905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:916:16 284s | 284s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:940:16 284s | 284s 940 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:971:16 284s | 284s 971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:982:16 284s | 284s 982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1057:16 284s | 284s 1057 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1207:16 284s | 284s 1207 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1217:16 284s | 284s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1229:16 284s | 284s 1229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1268:16 284s | 284s 1268 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1300:16 284s | 284s 1300 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1310:16 284s | 284s 1310 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1325:16 284s | 284s 1325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1335:16 284s | 284s 1335 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1345:16 284s | 284s 1345 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/generics.rs:1354:16 284s | 284s 1354 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:19:16 284s | 284s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:20:20 284s | 284s 20 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:9:1 284s | 284s 9 | / ast_enum_of_structs! { 284s 10 | | /// Things that can appear directly inside of a module or scope. 284s 11 | | /// 284s 12 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 96 | | } 284s 97 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:103:16 284s | 284s 103 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:121:16 284s | 284s 121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:137:16 284s | 284s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:154:16 284s | 284s 154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:167:16 284s | 284s 167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:181:16 284s | 284s 181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:201:16 284s | 284s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:215:16 284s | 284s 215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:229:16 284s | 284s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:244:16 284s | 284s 244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:263:16 284s | 284s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:279:16 284s | 284s 279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:299:16 284s | 284s 299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:316:16 284s | 284s 316 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:333:16 284s | 284s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:348:16 284s | 284s 348 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:477:16 284s | 284s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:467:1 284s | 284s 467 | / ast_enum_of_structs! { 284s 468 | | /// A suffix of an import tree in a `use` item: `Type as Renamed` or `*`. 284s 469 | | /// 284s 470 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 493 | | } 284s 494 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:500:16 284s | 284s 500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:512:16 284s | 284s 512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:522:16 284s | 284s 522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:534:16 284s | 284s 534 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:544:16 284s | 284s 544 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:561:16 284s | 284s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:562:20 284s | 284s 562 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:551:1 284s | 284s 551 | / ast_enum_of_structs! { 284s 552 | | /// An item within an `extern` block. 284s 553 | | /// 284s 554 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 600 | | } 284s 601 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:607:16 284s | 284s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:620:16 284s | 284s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:637:16 284s | 284s 637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:651:16 284s | 284s 651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:669:16 284s | 284s 669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:670:20 284s | 284s 670 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:659:1 284s | 284s 659 | / ast_enum_of_structs! { 284s 660 | | /// An item declaration within the definition of a trait. 284s 661 | | /// 284s 662 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 708 | | } 284s 709 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:715:16 284s | 284s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:731:16 284s | 284s 731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:744:16 284s | 284s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:761:16 284s | 284s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:779:16 284s | 284s 779 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:780:20 284s | 284s 780 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:769:1 284s | 284s 769 | / ast_enum_of_structs! { 284s 770 | | /// An item within an impl block. 284s 771 | | /// 284s 772 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 818 | | } 284s 819 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:825:16 284s | 284s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:844:16 284s | 284s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:858:16 284s | 284s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:876:16 284s | 284s 876 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:889:16 284s | 284s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:927:16 284s | 284s 927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:923:1 284s | 284s 923 | / ast_enum_of_structs! { 284s 924 | | /// An argument in a function signature: the `n: usize` in `fn f(n: usize)`. 284s 925 | | /// 284s 926 | | /// *This type is available only if Syn is built with the `"full"` feature.* 284s ... | 284s 938 | | } 284s 939 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:949:16 284s | 284s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:93:15 284s | 284s 93 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:381:19 284s | 284s 381 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:597:15 284s | 284s 597 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:705:15 284s | 284s 705 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:815:15 284s | 284s 815 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:976:16 284s | 284s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1237:16 284s | 284s 1237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1264:16 284s | 284s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1305:16 284s | 284s 1305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1338:16 284s | 284s 1338 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1352:16 284s | 284s 1352 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1401:16 284s | 284s 1401 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1419:16 284s | 284s 1419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1500:16 284s | 284s 1500 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1535:16 284s | 284s 1535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1564:16 284s | 284s 1564 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1584:16 284s | 284s 1584 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1680:16 284s | 284s 1680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1722:16 284s | 284s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1745:16 284s | 284s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1827:16 284s | 284s 1827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1843:16 284s | 284s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1859:16 284s | 284s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1903:16 284s | 284s 1903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1921:16 284s | 284s 1921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1971:16 284s | 284s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1995:16 284s | 284s 1995 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2019:16 284s | 284s 2019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2070:16 284s | 284s 2070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2144:16 284s | 284s 2144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2200:16 284s | 284s 2200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2260:16 284s | 284s 2260 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2290:16 284s | 284s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2319:16 284s | 284s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2392:16 284s | 284s 2392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2410:16 284s | 284s 2410 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2522:16 284s | 284s 2522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2603:16 284s | 284s 2603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2628:16 284s | 284s 2628 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2668:16 284s | 284s 2668 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2726:16 284s | 284s 2726 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:1817:23 284s | 284s 1817 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2251:23 284s | 284s 2251 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2592:27 284s | 284s 2592 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2771:16 284s | 284s 2771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2787:16 284s | 284s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2799:16 284s | 284s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2815:16 284s | 284s 2815 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2830:16 284s | 284s 2830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2843:16 284s | 284s 2843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2861:16 284s | 284s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2873:16 284s | 284s 2873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2888:16 284s | 284s 2888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2903:16 284s | 284s 2903 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2929:16 284s | 284s 2929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2942:16 284s | 284s 2942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2964:16 284s | 284s 2964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:2979:16 284s | 284s 2979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3001:16 284s | 284s 3001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3023:16 284s | 284s 3023 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3034:16 284s | 284s 3034 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3043:16 284s | 284s 3043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3050:16 284s | 284s 3050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3059:16 284s | 284s 3059 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3066:16 284s | 284s 3066 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3075:16 284s | 284s 3075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3091:16 284s | 284s 3091 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3110:16 284s | 284s 3110 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3130:16 284s | 284s 3130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3139:16 284s | 284s 3139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3155:16 284s | 284s 3155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3177:16 284s | 284s 3177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3193:16 284s | 284s 3193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3202:16 284s | 284s 3202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3212:16 284s | 284s 3212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3226:16 284s | 284s 3226 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3237:16 284s | 284s 3237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3273:16 284s | 284s 3273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/item.rs:3301:16 284s | 284s 3301 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/file.rs:80:16 284s | 284s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/file.rs:93:16 284s | 284s 93 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/file.rs:118:16 284s | 284s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lifetime.rs:127:16 284s | 284s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lifetime.rs:145:16 284s | 284s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:629:12 284s | 284s 629 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:640:12 284s | 284s 640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:652:12 284s | 284s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:14:1 284s | 284s 14 | / ast_enum_of_structs! { 284s 15 | | /// A Rust literal such as a string or integer or boolean. 284s 16 | | /// 284s 17 | | /// # Syntax tree enum 284s ... | 284s 48 | | } 284s 49 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 703 | lit_extra_traits!(LitStr); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 703 | lit_extra_traits!(LitStr); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 703 | lit_extra_traits!(LitStr); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 704 | lit_extra_traits!(LitByteStr); 284s | ----------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 704 | lit_extra_traits!(LitByteStr); 284s | ----------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 704 | lit_extra_traits!(LitByteStr); 284s | ----------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 705 | lit_extra_traits!(LitByte); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 705 | lit_extra_traits!(LitByte); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 705 | lit_extra_traits!(LitByte); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 706 | lit_extra_traits!(LitChar); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 706 | lit_extra_traits!(LitChar); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 706 | lit_extra_traits!(LitChar); 284s | -------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 707 | lit_extra_traits!(LitInt); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 707 | lit_extra_traits!(LitInt); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 707 | lit_extra_traits!(LitInt); 284s | ------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:666:20 284s | 284s 666 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s ... 284s 708 | lit_extra_traits!(LitFloat); 284s | --------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:676:20 284s | 284s 676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 708 | lit_extra_traits!(LitFloat); 284s | --------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:684:20 284s | 284s 684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s ... 284s 708 | lit_extra_traits!(LitFloat); 284s | --------------------------- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `lit_extra_traits` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:170:16 284s | 284s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:200:16 284s | 284s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:557:16 284s | 284s 557 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:567:16 284s | 284s 567 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:577:16 284s | 284s 577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:587:16 284s | 284s 587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:597:16 284s | 284s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:607:16 284s | 284s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:617:16 284s | 284s 617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:744:16 284s | 284s 744 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:816:16 284s | 284s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:827:16 284s | 284s 827 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:838:16 284s | 284s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:849:16 284s | 284s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:860:16 284s | 284s 860 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:871:16 284s | 284s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:882:16 284s | 284s 882 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:900:16 284s | 284s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:907:16 284s | 284s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:914:16 284s | 284s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:921:16 284s | 284s 921 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:928:16 284s | 284s 928 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:935:16 284s | 284s 935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:942:16 284s | 284s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_negative_literal_parse` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lit.rs:1568:15 284s | 284s 1568 | #[cfg(syn_no_negative_literal_parse)] 284s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_negative_literal_parse)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_negative_literal_parse)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:15:16 284s | 284s 15 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:29:16 284s | 284s 29 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:137:16 284s | 284s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:145:16 284s | 284s 145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:177:16 284s | 284s 177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/mac.rs:201:16 284s | 284s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:8:16 284s | 284s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:37:16 284s | 284s 37 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:57:16 284s | 284s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:70:16 284s | 284s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:83:16 284s | 284s 83 | #[cfg_attr(doc_cfg, doc(cfg(feature = "derive")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:95:16 284s | 284s 95 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/derive.rs:231:16 284s | 284s 231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:6:16 284s | 284s 6 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:72:16 284s | 284s 72 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:130:16 284s | 284s 130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:165:16 284s | 284s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:188:16 284s | 284s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/op.rs:224:16 284s | 284s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:7:16 284s | 284s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:19:16 284s | 284s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:39:16 284s | 284s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:136:16 284s | 284s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:147:16 284s | 284s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:109:20 284s | 284s 109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:312:16 284s | 284s 312 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:321:16 284s | 284s 321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/stmt.rs:336:16 284s | 284s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:16:16 284s | 284s 16 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:17:20 284s | 284s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:5:1 284s | 284s 5 | / ast_enum_of_structs! { 284s 6 | | /// The possible types that a Rust value could have. 284s 7 | | /// 284s 8 | | /// *This type is available only if Syn is built with the `"derive"` or `"full"` 284s ... | 284s 88 | | } 284s 89 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:96:16 284s | 284s 96 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:110:16 284s | 284s 110 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:128:16 284s | 284s 128 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:141:16 284s | 284s 141 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:153:16 284s | 284s 153 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:164:16 284s | 284s 164 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:175:16 284s | 284s 175 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:186:16 284s | 284s 186 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:199:16 284s | 284s 199 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:211:16 284s | 284s 211 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:225:16 284s | 284s 225 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:239:16 284s | 284s 239 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:252:16 284s | 284s 252 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:264:16 284s | 284s 264 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:276:16 284s | 284s 276 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:288:16 284s | 284s 288 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:311:16 284s | 284s 311 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:323:16 284s | 284s 323 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:85:15 284s | 284s 85 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:342:16 284s | 284s 342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:656:16 284s | 284s 656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:667:16 284s | 284s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:680:16 284s | 284s 680 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:703:16 284s | 284s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:716:16 284s | 284s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:777:16 284s | 284s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:786:16 284s | 284s 786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:795:16 284s | 284s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:828:16 284s | 284s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:837:16 284s | 284s 837 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:887:16 284s | 284s 887 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:895:16 284s | 284s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:949:16 284s | 284s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:992:16 284s | 284s 992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1003:16 284s | 284s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1024:16 284s | 284s 1024 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1098:16 284s | 284s 1098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1108:16 284s | 284s 1108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:357:20 284s | 284s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:869:20 284s | 284s 869 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:904:20 284s | 284s 904 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:958:20 284s | 284s 958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1128:16 284s | 284s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1137:16 284s | 284s 1137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1148:16 284s | 284s 1148 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1162:16 284s | 284s 1162 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1172:16 284s | 284s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1193:16 284s | 284s 1193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1200:16 284s | 284s 1200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1209:16 284s | 284s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1216:16 284s | 284s 1216 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1224:16 284s | 284s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1232:16 284s | 284s 1232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1241:16 284s | 284s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1250:16 284s | 284s 1250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1257:16 284s | 284s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1264:16 284s | 284s 1264 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1277:16 284s | 284s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1289:16 284s | 284s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/ty.rs:1297:16 284s | 284s 1297 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:16:16 284s | 284s 16 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:17:20 284s | 284s 17 | #[cfg_attr(not(syn_no_non_exhaustive), non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/macros.rs:155:20 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s ::: /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:5:1 284s | 284s 5 | / ast_enum_of_structs! { 284s 6 | | /// A pattern in a local binding, function signature, match expression, or 284s 7 | | /// various other places. 284s 8 | | /// 284s ... | 284s 97 | | } 284s 98 | | } 284s | |_- in this macro invocation 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s = note: this warning originates in the macro `generate_to_tokens` which comes from the expansion of the macro `ast_enum_of_structs` (in Nightly builds, run with -Z macro-backtrace for more info) 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:104:16 284s | 284s 104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:119:16 284s | 284s 119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:136:16 284s | 284s 136 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:147:16 284s | 284s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:158:16 284s | 284s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:176:16 284s | 284s 176 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:188:16 284s | 284s 188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:201:16 284s | 284s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:214:16 284s | 284s 214 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:225:16 284s | 284s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:237:16 284s | 284s 237 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:251:16 284s | 284s 251 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:263:16 284s | 284s 263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:275:16 284s | 284s 275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:288:16 284s | 284s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:302:16 284s | 284s 302 | #[cfg_attr(doc_cfg, doc(cfg(feature = "full")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:94:15 284s | 284s 94 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:318:16 284s | 284s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:769:16 284s | 284s 769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: `wait-timeout` (lib) generated 3 warnings (1 duplicate) 284s Compiling bit-vec v0.8.0 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:777:16 284s | 284s 777 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_vec CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/bit-vec-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/bit-vec-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A vector of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-vec' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-vec CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-vec' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name bit_vec --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/bit-vec-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "serde_no_std", "serde_std", "std"))' -C metadata=f5a472a8e3d383f4 -C extra-filename=-f5a472a8e3d383f4 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:791:16 284s | 284s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:807:16 284s | 284s 807 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:816:16 284s | 284s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:826:16 284s | 284s 826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:834:16 284s | 284s 834 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:844:16 284s | 284s 844 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:853:16 284s | 284s 853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:863:16 284s | 284s 863 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:871:16 284s | 284s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:879:16 284s | 284s 879 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:889:16 284s | 284s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:899:16 284s | 284s 899 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:907:16 284s | 284s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/pat.rs:916:16 284s | 284s 916 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:9:16 284s | 284s 9 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:35:16 284s | 284s 35 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:67:16 284s | 284s 67 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:105:16 284s | 284s 105 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:130:16 284s | 284s 130 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:144:16 284s | 284s 144 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:157:16 284s | 284s 157 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:171:16 284s | 284s 171 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:201:16 284s | 284s 201 | #[cfg_attr(doc_cfg, doc(cfg(any(feature = "full", feature = "derive"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:218:16 284s | 284s 218 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:225:16 284s | 284s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:358:16 284s | 284s 358 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:385:16 284s | 284s 385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:397:16 284s | 284s 397 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:430:16 284s | 284s 430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:442:16 284s | 284s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:505:20 284s | 284s 505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:569:20 284s | 284s 569 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:591:20 284s | 284s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:693:16 284s | 284s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:701:16 284s | 284s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:709:16 284s | 284s 709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:724:16 284s | 284s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:752:16 284s | 284s 752 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:793:16 284s | 284s 793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:802:16 284s | 284s 802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/path.rs:811:16 284s | 284s 811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:371:12 284s | 284s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:386:12 284s | 284s 386 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:395:12 284s | 284s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:408:12 284s | 284s 408 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:422:12 284s | 284s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:1012:12 284s | 284s 1012 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:54:15 284s | 284s 54 | #[cfg(not(syn_no_const_vec_new))] 284s | ^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_const_vec_new` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:63:11 284s | 284s 63 | #[cfg(syn_no_const_vec_new)] 284s | ^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_const_vec_new)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_const_vec_new)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:267:16 284s | 284s 267 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:288:16 284s | 284s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:325:16 284s | 284s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:346:16 284s | 284s 346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:1060:16 284s | 284s 1060 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/punctuated.rs:1071:16 284s | 284s 1071 | #[cfg_attr(doc_cfg, doc(cfg(feature = "printing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse_quote.rs:68:12 284s | 284s 68 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse_quote.rs:100:12 284s | 284s 100 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "printing"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse_macro_input.rs:107:12 284s | 284s 107 | #[cfg_attr(doc_cfg, doc(cfg(all(feature = "parsing", feature = "proc-macro"))))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/lib.rs:579:16 284s | 284s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "visit")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:1216:15 284s | 284s 1216 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:1905:15 284s | 284s 1905 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:2071:15 284s | 284s 2071 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:2207:15 284s | 284s 2207 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:2807:15 284s | 284s 2807 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:3263:15 284s | 284s 3263 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/visit.rs:3392:15 284s | 284s 3392 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:7:12 284s | 284s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:17:12 284s | 284s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:29:12 284s | 284s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:43:12 284s | 284s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:46:12 284s | 284s 46 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:53:12 284s | 284s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:66:12 284s | 284s 66 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:77:12 284s | 284s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:80:12 284s | 284s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:87:12 284s | 284s 87 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:98:12 284s | 284s 98 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:108:12 284s | 284s 108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:120:12 284s | 284s 120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:135:12 284s | 284s 135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:146:12 284s | 284s 146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:157:12 284s | 284s 157 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:168:12 284s | 284s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:179:12 284s | 284s 179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:189:12 284s | 284s 189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:202:12 284s | 284s 202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:282:12 284s | 284s 282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:293:12 284s | 284s 293 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:305:12 284s | 284s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:317:12 284s | 284s 317 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:329:12 284s | 284s 329 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:341:12 284s | 284s 341 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:353:12 284s | 284s 353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:364:12 284s | 284s 364 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:375:12 284s | 284s 375 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:387:12 284s | 284s 387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:399:12 284s | 284s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:411:12 284s | 284s 411 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:428:12 284s | 284s 428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:439:12 284s | 284s 439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:451:12 284s | 284s 451 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:466:12 284s | 284s 466 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:477:12 284s | 284s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:490:12 284s | 284s 490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:502:12 284s | 284s 502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:515:12 284s | 284s 515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:525:12 284s | 284s 525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:537:12 284s | 284s 537 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:547:12 284s | 284s 547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:560:12 284s | 284s 560 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:575:12 284s | 284s 575 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:586:12 284s | 284s 586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:597:12 284s | 284s 597 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:609:12 284s | 284s 609 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:622:12 284s | 284s 622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:635:12 284s | 284s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:646:12 284s | 284s 646 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:660:12 284s | 284s 660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:671:12 284s | 284s 671 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:682:12 284s | 284s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:693:12 284s | 284s 693 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:705:12 284s | 284s 705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:716:12 284s | 284s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:727:12 284s | 284s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:740:12 284s | 284s 740 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:751:12 284s | 284s 751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:764:12 284s | 284s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:776:12 284s | 284s 776 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:788:12 284s | 284s 788 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:799:12 284s | 284s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:809:12 284s | 284s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:819:12 284s | 284s 819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:830:12 284s | 284s 830 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:840:12 284s | 284s 840 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:855:12 284s | 284s 855 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:867:12 284s | 284s 867 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:878:12 284s | 284s 878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:894:12 284s | 284s 894 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:907:12 284s | 284s 907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:920:12 284s | 284s 920 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:930:12 284s | 284s 930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:941:12 284s | 284s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:953:12 284s | 284s 953 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:968:12 284s | 284s 968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:986:12 284s | 284s 986 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:997:12 284s | 284s 997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1010:12 284s | 284s 1010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1027:12 284s | 284s 1027 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1037:12 284s | 284s 1037 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1064:12 284s | 284s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1081:12 284s | 284s 1081 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1096:12 284s | 284s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1111:12 284s | 284s 1111 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1123:12 284s | 284s 1123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1135:12 284s | 284s 1135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1152:12 284s | 284s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1164:12 284s | 284s 1164 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1177:12 284s | 284s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1191:12 284s | 284s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1209:12 284s | 284s 1209 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1224:12 284s | 284s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1243:12 284s | 284s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1259:12 284s | 284s 1259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1275:12 284s | 284s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1289:12 284s | 284s 1289 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1303:12 284s | 284s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1313:12 284s | 284s 1313 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1324:12 284s | 284s 1324 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1339:12 284s | 284s 1339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1349:12 284s | 284s 1349 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1362:12 284s | 284s 1362 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1374:12 284s | 284s 1374 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1385:12 284s | 284s 1385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1395:12 284s | 284s 1395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1406:12 284s | 284s 1406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1417:12 284s | 284s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1428:12 284s | 284s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1440:12 284s | 284s 1440 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1450:12 284s | 284s 1450 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1461:12 284s | 284s 1461 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1487:12 284s | 284s 1487 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1498:12 284s | 284s 1498 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1511:12 284s | 284s 1511 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1521:12 284s | 284s 1521 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1531:12 284s | 284s 1531 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1542:12 284s | 284s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1553:12 284s | 284s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1565:12 284s | 284s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1577:12 284s | 284s 1577 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1587:12 284s | 284s 1587 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1598:12 284s | 284s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1611:12 284s | 284s 1611 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1622:12 284s | 284s 1622 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1633:12 284s | 284s 1633 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1645:12 284s | 284s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1655:12 284s | 284s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1665:12 284s | 284s 1665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1678:12 284s | 284s 1678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1688:12 284s | 284s 1688 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1699:12 284s | 284s 1699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1710:12 284s | 284s 1710 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1722:12 284s | 284s 1722 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1735:12 284s | 284s 1735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1738:12 284s | 284s 1738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1745:12 284s | 284s 1745 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1757:12 284s | 284s 1757 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1767:12 284s | 284s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1786:12 284s | 284s 1786 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1798:12 284s | 284s 1798 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1810:12 284s | 284s 1810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1813:12 284s | 284s 1813 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1820:12 284s | 284s 1820 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1835:12 284s | 284s 1835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1850:12 284s | 284s 1850 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1861:12 284s | 284s 1861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1873:12 284s | 284s 1873 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1889:12 284s | 284s 1889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1914:12 284s | 284s 1914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1926:12 284s | 284s 1926 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1942:12 284s | 284s 1942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1952:12 284s | 284s 1952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1962:12 284s | 284s 1962 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1971:12 284s | 284s 1971 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1978:12 284s | 284s 1978 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1987:12 284s | 284s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2001:12 284s | 284s 2001 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2011:12 284s | 284s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2021:12 284s | 284s 2021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2031:12 284s | 284s 2031 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2043:12 284s | 284s 2043 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2055:12 284s | 284s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2065:12 284s | 284s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2075:12 284s | 284s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2085:12 284s | 284s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2088:12 284s | 284s 2088 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2095:12 284s | 284s 2095 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2104:12 284s | 284s 2104 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `borsh` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:102:7 284s | 284s 102 | #[cfg(feature = "borsh")] 284s | ^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `borsh` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s = note: `#[warn(unexpected_cfgs)]` on by default 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2114:12 284s | 284s 2114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `miniserde` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:104:7 284s | 284s 104 | #[cfg(feature = "miniserde")] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `miniserde` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `nanoserde` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:106:7 284s | 284s 106 | #[cfg(feature = "nanoserde")] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `nanoserde` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:108:7 284s | 284s 108 | #[cfg(feature = "nanoserde")] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `borsh` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:238:5 284s | 284s 238 | feature = "borsh", 284s | ^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `borsh` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2123:12 284s | 284s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `miniserde` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:242:5 284s | 284s 242 | feature = "miniserde", 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `miniserde` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition value: `nanoserde` 284s --> /usr/share/cargo/registry/bit-vec-0.8.0/src/lib.rs:246:5 284s | 284s 246 | feature = "nanoserde", 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = note: expected values for `feature` are: `default`, `serde`, `serde_no_std`, `serde_std`, and `std` 284s = help: consider adding `nanoserde` as a feature in `Cargo.toml` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2134:12 284s | 284s 2134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2145:12 284s | 284s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2158:12 284s | 284s 2158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2168:12 284s | 284s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2180:12 284s | 284s 2180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2189:12 284s | 284s 2189 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2198:12 284s | 284s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2210:12 284s | 284s 2210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2222:12 284s | 284s 2222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:2232:12 284s | 284s 2232 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:276:23 284s | 284s 276 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:849:19 284s | 284s 849 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:962:19 284s | 284s 962 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1058:19 284s | 284s 1058 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1481:19 284s | 284s 1481 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1829:19 284s | 284s 1829 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/clone.rs:1908:19 284s | 284s 1908 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:8:12 284s | 284s 8 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:11:12 284s | 284s 11 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:18:12 284s | 284s 18 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:21:12 284s | 284s 21 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:28:12 284s | 284s 28 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:31:12 284s | 284s 31 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:39:12 284s | 284s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:42:12 284s | 284s 42 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:53:12 284s | 284s 53 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:56:12 284s | 284s 56 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:64:12 284s | 284s 64 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:67:12 284s | 284s 67 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:74:12 284s | 284s 74 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:77:12 284s | 284s 77 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:114:12 284s | 284s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:117:12 284s | 284s 117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:124:12 284s | 284s 124 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:127:12 284s | 284s 127 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:134:12 284s | 284s 134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:137:12 284s | 284s 137 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:144:12 284s | 284s 144 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:147:12 284s | 284s 147 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:155:12 284s | 284s 155 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:158:12 284s | 284s 158 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:165:12 284s | 284s 165 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:168:12 284s | 284s 168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:180:12 284s | 284s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:183:12 284s | 284s 183 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:190:12 284s | 284s 190 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:193:12 284s | 284s 193 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:200:12 284s | 284s 200 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:203:12 284s | 284s 203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:210:12 284s | 284s 210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:213:12 284s | 284s 213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:221:12 284s | 284s 221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:224:12 284s | 284s 224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:305:12 284s | 284s 305 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:308:12 284s | 284s 308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:315:12 284s | 284s 315 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:318:12 284s | 284s 318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:325:12 284s | 284s 325 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:328:12 284s | 284s 328 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:336:12 284s | 284s 336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:339:12 284s | 284s 339 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:347:12 284s | 284s 347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:350:12 284s | 284s 350 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:357:12 284s | 284s 357 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:360:12 284s | 284s 360 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:368:12 284s | 284s 368 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:371:12 284s | 284s 371 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:379:12 284s | 284s 379 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:382:12 284s | 284s 382 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:389:12 284s | 284s 389 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:392:12 284s | 284s 392 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:399:12 284s | 284s 399 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:402:12 284s | 284s 402 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:409:12 284s | 284s 409 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:412:12 284s | 284s 412 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:419:12 284s | 284s 419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:422:12 284s | 284s 422 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:432:12 284s | 284s 432 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:435:12 284s | 284s 435 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:442:12 284s | 284s 442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:445:12 284s | 284s 445 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:453:12 284s | 284s 453 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:456:12 284s | 284s 456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:464:12 284s | 284s 464 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:467:12 284s | 284s 467 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:474:12 284s | 284s 474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:477:12 284s | 284s 477 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:486:12 284s | 284s 486 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:489:12 284s | 284s 489 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:496:12 284s | 284s 496 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:499:12 284s | 284s 499 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:506:12 284s | 284s 506 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:509:12 284s | 284s 509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:516:12 284s | 284s 516 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:519:12 284s | 284s 519 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:526:12 284s | 284s 526 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:529:12 284s | 284s 529 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:536:12 284s | 284s 536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:539:12 284s | 284s 539 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:546:12 284s | 284s 546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:549:12 284s | 284s 549 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:558:12 284s | 284s 558 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:561:12 284s | 284s 561 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:568:12 284s | 284s 568 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:571:12 284s | 284s 571 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:578:12 284s | 284s 578 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:581:12 284s | 284s 581 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:589:12 284s | 284s 589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:592:12 284s | 284s 592 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:600:12 284s | 284s 600 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:603:12 284s | 284s 603 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:610:12 284s | 284s 610 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:613:12 284s | 284s 613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:620:12 284s | 284s 620 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:623:12 284s | 284s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:632:12 284s | 284s 632 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:635:12 284s | 284s 635 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:642:12 284s | 284s 642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:645:12 284s | 284s 645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:652:12 284s | 284s 652 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:655:12 284s | 284s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:662:12 284s | 284s 662 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:665:12 284s | 284s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:672:12 284s | 284s 672 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:675:12 284s | 284s 675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:682:12 284s | 284s 682 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:685:12 284s | 284s 685 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:692:12 284s | 284s 692 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:695:12 284s | 284s 695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:703:12 284s | 284s 703 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:706:12 284s | 284s 706 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:713:12 284s | 284s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:716:12 284s | 284s 716 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:724:12 284s | 284s 724 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:727:12 284s | 284s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:735:12 284s | 284s 735 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:738:12 284s | 284s 738 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:746:12 284s | 284s 746 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:749:12 284s | 284s 749 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:761:12 284s | 284s 761 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:764:12 284s | 284s 764 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:771:12 284s | 284s 771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:774:12 284s | 284s 774 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:781:12 284s | 284s 781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:784:12 284s | 284s 784 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:792:12 284s | 284s 792 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:795:12 284s | 284s 795 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:806:12 284s | 284s 806 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:809:12 284s | 284s 809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:825:12 284s | 284s 825 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:828:12 284s | 284s 828 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:835:12 284s | 284s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:838:12 284s | 284s 838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:846:12 284s | 284s 846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:849:12 284s | 284s 849 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:858:12 284s | 284s 858 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:861:12 284s | 284s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:868:12 284s | 284s 868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:871:12 284s | 284s 871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:895:12 284s | 284s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:898:12 284s | 284s 898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:914:12 284s | 284s 914 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:917:12 284s | 284s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:931:12 284s | 284s 931 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:934:12 284s | 284s 934 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:942:12 284s | 284s 942 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:945:12 284s | 284s 945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:961:12 284s | 284s 961 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:964:12 284s | 284s 964 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:973:12 284s | 284s 973 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:976:12 284s | 284s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:984:12 284s | 284s 984 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:987:12 284s | 284s 987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:996:12 284s | 284s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:999:12 284s | 284s 999 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1008:12 284s | 284s 1008 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1011:12 284s | 284s 1011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1039:12 284s | 284s 1039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1042:12 284s | 284s 1042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1050:12 284s | 284s 1050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1053:12 284s | 284s 1053 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1061:12 284s | 284s 1061 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1064:12 284s | 284s 1064 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1072:12 284s | 284s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1075:12 284s | 284s 1075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1083:12 284s | 284s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1086:12 284s | 284s 1086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1093:12 284s | 284s 1093 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1096:12 284s | 284s 1096 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1106:12 284s | 284s 1106 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1109:12 284s | 284s 1109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1117:12 284s | 284s 1117 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1120:12 284s | 284s 1120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1128:12 284s | 284s 1128 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1131:12 284s | 284s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1139:12 284s | 284s 1139 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1142:12 284s | 284s 1142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1151:12 284s | 284s 1151 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1154:12 284s | 284s 1154 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1163:12 284s | 284s 1163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1166:12 284s | 284s 1166 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1177:12 284s | 284s 1177 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1180:12 284s | 284s 1180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1188:12 284s | 284s 1188 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1191:12 284s | 284s 1191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1199:12 284s | 284s 1199 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1202:12 284s | 284s 1202 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1210:12 284s | 284s 1210 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1213:12 284s | 284s 1213 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1221:12 284s | 284s 1221 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1224:12 284s | 284s 1224 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1231:12 284s | 284s 1231 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1234:12 284s | 284s 1234 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1241:12 284s | 284s 1241 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1243:12 284s | 284s 1243 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1261:12 284s | 284s 1261 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1263:12 284s | 284s 1263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1269:12 284s | 284s 1269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1271:12 284s | 284s 1271 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1273:12 284s | 284s 1273 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1275:12 284s | 284s 1275 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1277:12 284s | 284s 1277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1279:12 284s | 284s 1279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1282:12 284s | 284s 1282 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1285:12 284s | 284s 1285 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1292:12 284s | 284s 1292 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1295:12 284s | 284s 1295 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1303:12 284s | 284s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1306:12 284s | 284s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1318:12 284s | 284s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1321:12 284s | 284s 1321 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1333:12 284s | 284s 1333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1336:12 284s | 284s 1336 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1343:12 284s | 284s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1346:12 284s | 284s 1346 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1353:12 284s | 284s 1353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1356:12 284s | 284s 1356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1363:12 284s | 284s 1363 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1366:12 284s | 284s 1366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1377:12 284s | 284s 1377 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1380:12 284s | 284s 1380 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1387:12 284s | 284s 1387 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1390:12 284s | 284s 1390 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1417:12 284s | 284s 1417 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1420:12 284s | 284s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1427:12 284s | 284s 1427 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1430:12 284s | 284s 1430 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1439:12 284s | 284s 1439 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1442:12 284s | 284s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1449:12 284s | 284s 1449 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1452:12 284s | 284s 1452 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1459:12 284s | 284s 1459 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1462:12 284s | 284s 1462 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1470:12 284s | 284s 1470 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1473:12 284s | 284s 1473 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1480:12 284s | 284s 1480 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1483:12 284s | 284s 1483 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1491:12 284s | 284s 1491 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1494:12 284s | 284s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1502:12 284s | 284s 1502 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1505:12 284s | 284s 1505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1512:12 284s | 284s 1512 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1515:12 284s | 284s 1515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1522:12 284s | 284s 1522 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1525:12 284s | 284s 1525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1533:12 284s | 284s 1533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1536:12 284s | 284s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1543:12 284s | 284s 1543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1546:12 284s | 284s 1546 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1553:12 284s | 284s 1553 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1556:12 284s | 284s 1556 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1563:12 284s | 284s 1563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1566:12 284s | 284s 1566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1573:12 284s | 284s 1573 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1576:12 284s | 284s 1576 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1583:12 284s | 284s 1583 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1586:12 284s | 284s 1586 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1604:12 284s | 284s 1604 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1607:12 284s | 284s 1607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1614:12 284s | 284s 1614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1617:12 284s | 284s 1617 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1624:12 284s | 284s 1624 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1627:12 284s | 284s 1627 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1634:12 284s | 284s 1634 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1637:12 284s | 284s 1637 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1645:12 284s | 284s 1645 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1648:12 284s | 284s 1648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1656:12 284s | 284s 1656 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1659:12 284s | 284s 1659 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1670:12 284s | 284s 1670 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1673:12 284s | 284s 1673 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1681:12 284s | 284s 1681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1684:12 284s | 284s 1684 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1695:12 284s | 284s 1695 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1698:12 284s | 284s 1698 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1709:12 284s | 284s 1709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1712:12 284s | 284s 1712 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1725:12 284s | 284s 1725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1728:12 284s | 284s 1728 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1736:12 284s | 284s 1736 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1739:12 284s | 284s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1750:12 284s | 284s 1750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1753:12 284s | 284s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1769:12 284s | 284s 1769 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1772:12 284s | 284s 1772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1780:12 284s | 284s 1780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1783:12 284s | 284s 1783 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1791:12 284s | 284s 1791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1794:12 284s | 284s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1802:12 284s | 284s 1802 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1805:12 284s | 284s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1814:12 284s | 284s 1814 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1817:12 284s | 284s 1817 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1843:12 284s | 284s 1843 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1846:12 284s | 284s 1846 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1853:12 284s | 284s 1853 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1856:12 284s | 284s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1865:12 284s | 284s 1865 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1868:12 284s | 284s 1868 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1875:12 284s | 284s 1875 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1878:12 284s | 284s 1878 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1885:12 284s | 284s 1885 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1888:12 284s | 284s 1888 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1895:12 284s | 284s 1895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1898:12 284s | 284s 1898 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1905:12 284s | 284s 1905 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1908:12 284s | 284s 1908 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1915:12 284s | 284s 1915 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1918:12 284s | 284s 1918 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1927:12 284s | 284s 1927 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1930:12 284s | 284s 1930 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1945:12 284s | 284s 1945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1948:12 284s | 284s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1955:12 284s | 284s 1955 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1958:12 284s | 284s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1965:12 284s | 284s 1965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1968:12 284s | 284s 1968 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1976:12 284s | 284s 1976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1979:12 284s | 284s 1979 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1987:12 284s | 284s 1987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1990:12 284s | 284s 1990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:1997:12 284s | 284s 1997 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2000:12 284s | 284s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2007:12 284s | 284s 2007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2010:12 284s | 284s 2010 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2017:12 284s | 284s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2020:12 284s | 284s 2020 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2032:12 284s | 284s 2032 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2035:12 284s | 284s 2035 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2042:12 284s | 284s 2042 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2045:12 284s | 284s 2045 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2052:12 284s | 284s 2052 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2055:12 284s | 284s 2055 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2062:12 284s | 284s 2062 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2065:12 284s | 284s 2065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2072:12 284s | 284s 2072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2075:12 284s | 284s 2075 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2082:12 284s | 284s 2082 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2085:12 284s | 284s 2085 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2099:12 284s | 284s 2099 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2102:12 284s | 284s 2102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2109:12 284s | 284s 2109 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2112:12 284s | 284s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2120:12 284s | 284s 2120 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2123:12 284s | 284s 2123 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2130:12 284s | 284s 2130 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2133:12 284s | 284s 2133 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2140:12 284s | 284s 2140 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2143:12 284s | 284s 2143 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2150:12 284s | 284s 2150 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2153:12 284s | 284s 2153 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2168:12 284s | 284s 2168 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2171:12 284s | 284s 2171 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2178:12 284s | 284s 2178 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/eq.rs:2181:12 284s | 284s 2181 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:9:12 284s | 284s 9 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:19:12 284s | 284s 19 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:30:12 284s | 284s 30 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:44:12 284s | 284s 44 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:61:12 284s | 284s 61 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:73:12 284s | 284s 73 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:85:12 284s | 284s 85 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:180:12 284s | 284s 180 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:191:12 284s | 284s 191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:201:12 284s | 284s 201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:211:12 284s | 284s 211 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:225:12 284s | 284s 225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:236:12 284s | 284s 236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:259:12 284s | 284s 259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:269:12 284s | 284s 269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:280:12 284s | 284s 280 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:290:12 284s | 284s 290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:304:12 284s | 284s 304 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:507:12 284s | 284s 507 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:518:12 284s | 284s 518 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:530:12 284s | 284s 530 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:543:12 284s | 284s 543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:555:12 284s | 284s 555 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:566:12 284s | 284s 566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:579:12 284s | 284s 579 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:591:12 284s | 284s 591 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:602:12 284s | 284s 602 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:614:12 284s | 284s 614 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:626:12 284s | 284s 626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:638:12 284s | 284s 638 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:654:12 284s | 284s 654 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:665:12 284s | 284s 665 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:677:12 284s | 284s 677 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:691:12 284s | 284s 691 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:702:12 284s | 284s 702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:715:12 284s | 284s 715 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:727:12 284s | 284s 727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:739:12 284s | 284s 739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:750:12 284s | 284s 750 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:762:12 284s | 284s 762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:773:12 284s | 284s 773 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:785:12 284s | 284s 785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:799:12 284s | 284s 799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:810:12 284s | 284s 810 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:822:12 284s | 284s 822 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:835:12 284s | 284s 835 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:847:12 284s | 284s 847 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:859:12 284s | 284s 859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:870:12 284s | 284s 870 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:884:12 284s | 284s 884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:895:12 284s | 284s 895 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:906:12 284s | 284s 906 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:917:12 284s | 284s 917 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:929:12 284s | 284s 929 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:941:12 284s | 284s 941 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:952:12 284s | 284s 952 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:965:12 284s | 284s 965 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:976:12 284s | 284s 976 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:990:12 284s | 284s 990 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1003:12 284s | 284s 1003 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1016:12 284s | 284s 1016 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1038:12 284s | 284s 1038 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1048:12 284s | 284s 1048 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1058:12 284s | 284s 1058 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1070:12 284s | 284s 1070 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1089:12 284s | 284s 1089 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1122:12 284s | 284s 1122 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1134:12 284s | 284s 1134 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1146:12 284s | 284s 1146 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1160:12 284s | 284s 1160 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1172:12 284s | 284s 1172 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1203:12 284s | 284s 1203 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1222:12 284s | 284s 1222 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1245:12 284s | 284s 1245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1258:12 284s | 284s 1258 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1291:12 284s | 284s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1306:12 284s | 284s 1306 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1318:12 284s | 284s 1318 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1332:12 284s | 284s 1332 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1347:12 284s | 284s 1347 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1428:12 284s | 284s 1428 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1442:12 284s | 284s 1442 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1456:12 284s | 284s 1456 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1469:12 284s | 284s 1469 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1482:12 284s | 284s 1482 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1494:12 284s | 284s 1494 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1510:12 284s | 284s 1510 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1523:12 284s | 284s 1523 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1536:12 284s | 284s 1536 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1550:12 284s | 284s 1550 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1565:12 284s | 284s 1565 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1580:12 284s | 284s 1580 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1598:12 284s | 284s 1598 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1612:12 284s | 284s 1612 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1626:12 284s | 284s 1626 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1640:12 284s | 284s 1640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1653:12 284s | 284s 1653 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1663:12 284s | 284s 1663 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1675:12 284s | 284s 1675 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1717:12 284s | 284s 1717 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1727:12 284s | 284s 1727 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1739:12 284s | 284s 1739 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1751:12 284s | 284s 1751 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1771:12 284s | 284s 1771 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1794:12 284s | 284s 1794 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1805:12 284s | 284s 1805 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1816:12 284s | 284s 1816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1826:12 284s | 284s 1826 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1845:12 284s | 284s 1845 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1856:12 284s | 284s 1856 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1933:12 284s | 284s 1933 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1944:12 284s | 284s 1944 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1958:12 284s | 284s 1958 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1969:12 284s | 284s 1969 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1980:12 284s | 284s 1980 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1992:12 284s | 284s 1992 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2004:12 284s | 284s 2004 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2017:12 284s | 284s 2017 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2029:12 284s | 284s 2029 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2039:12 284s | 284s 2039 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2050:12 284s | 284s 2050 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2063:12 284s | 284s 2063 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2074:12 284s | 284s 2074 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2086:12 284s | 284s 2086 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2098:12 284s | 284s 2098 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2108:12 284s | 284s 2108 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2119:12 284s | 284s 2119 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2141:12 284s | 284s 2141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2152:12 284s | 284s 2152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2163:12 284s | 284s 2163 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2174:12 284s | 284s 2174 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2186:12 284s | 284s 2186 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2198:12 284s | 284s 2198 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2215:12 284s | 284s 2215 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2227:12 284s | 284s 2227 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2245:12 284s | 284s 2245 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2263:12 284s | 284s 2263 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2290:12 284s | 284s 2290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2303:12 284s | 284s 2303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2320:12 284s | 284s 2320 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2353:12 284s | 284s 2353 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2366:12 284s | 284s 2366 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2378:12 284s | 284s 2378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2391:12 284s | 284s 2391 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2406:12 284s | 284s 2406 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2479:12 284s | 284s 2479 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2490:12 284s | 284s 2490 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2505:12 284s | 284s 2505 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2515:12 284s | 284s 2515 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2525:12 284s | 284s 2525 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2533:12 284s | 284s 2533 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2543:12 284s | 284s 2543 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2551:12 284s | 284s 2551 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2566:12 284s | 284s 2566 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2585:12 284s | 284s 2585 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2595:12 284s | 284s 2595 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2606:12 284s | 284s 2606 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2618:12 284s | 284s 2618 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2630:12 284s | 284s 2630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2640:12 284s | 284s 2640 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2651:12 284s | 284s 2651 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2661:12 284s | 284s 2661 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2681:12 284s | 284s 2681 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2689:12 284s | 284s 2689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2699:12 284s | 284s 2699 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2709:12 284s | 284s 2709 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2720:12 284s | 284s 2720 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2731:12 284s | 284s 2731 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2762:12 284s | 284s 2762 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2772:12 284s | 284s 2772 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2785:12 284s | 284s 2785 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2793:12 284s | 284s 2793 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2801:12 284s | 284s 2801 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2812:12 284s | 284s 2812 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2838:12 284s | 284s 2838 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2848:12 284s | 284s 2848 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:501:23 284s | 284s 501 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1116:19 284s | 284s 1116 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1285:19 284s | 284s 1285 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1422:19 284s | 284s 1422 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:1927:19 284s | 284s 1927 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2347:19 284s | 284s 2347 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/hash.rs:2473:19 284s | 284s 2473 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:7:12 284s | 284s 7 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:17:12 284s | 284s 17 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:29:12 284s | 284s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:43:12 284s | 284s 43 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:57:12 284s | 284s 57 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:70:12 284s | 284s 70 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:81:12 284s | 284s 81 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:229:12 284s | 284s 229 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:240:12 284s | 284s 240 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:250:12 284s | 284s 250 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:262:12 284s | 284s 262 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:277:12 284s | 284s 277 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:288:12 284s | 284s 288 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:311:12 284s | 284s 311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:322:12 284s | 284s 322 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:333:12 284s | 284s 333 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:343:12 284s | 284s 343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:356:12 284s | 284s 356 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:596:12 284s | 284s 596 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:607:12 284s | 284s 607 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:619:12 284s | 284s 619 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:631:12 284s | 284s 631 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:643:12 284s | 284s 643 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:655:12 284s | 284s 655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:667:12 284s | 284s 667 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:678:12 284s | 284s 678 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:689:12 284s | 284s 689 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:701:12 284s | 284s 701 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:713:12 284s | 284s 713 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:725:12 284s | 284s 725 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:742:12 284s | 284s 742 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:753:12 284s | 284s 753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:765:12 284s | 284s 765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:780:12 284s | 284s 780 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:791:12 284s | 284s 791 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:804:12 284s | 284s 804 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:816:12 284s | 284s 816 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:829:12 284s | 284s 829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:839:12 284s | 284s 839 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:851:12 284s | 284s 851 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:861:12 284s | 284s 861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:874:12 284s | 284s 874 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:889:12 284s | 284s 889 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:900:12 284s | 284s 900 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:911:12 284s | 284s 911 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:923:12 284s | 284s 923 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:936:12 284s | 284s 936 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:949:12 284s | 284s 949 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:960:12 284s | 284s 960 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:974:12 284s | 284s 974 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:985:12 284s | 284s 985 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:996:12 284s | 284s 996 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1007:12 284s | 284s 1007 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1019:12 284s | 284s 1019 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1030:12 284s | 284s 1030 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1041:12 284s | 284s 1041 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1054:12 284s | 284s 1054 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1065:12 284s | 284s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1078:12 284s | 284s 1078 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1090:12 284s | 284s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1102:12 284s | 284s 1102 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1121:12 284s | 284s 1121 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1131:12 284s | 284s 1131 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1141:12 284s | 284s 1141 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1152:12 284s | 284s 1152 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1170:12 284s | 284s 1170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1205:12 284s | 284s 1205 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1217:12 284s | 284s 1217 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1228:12 284s | 284s 1228 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1244:12 284s | 284s 1244 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1257:12 284s | 284s 1257 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1290:12 284s | 284s 1290 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1308:12 284s | 284s 1308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1331:12 284s | 284s 1331 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1343:12 284s | 284s 1343 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1378:12 284s | 284s 1378 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1396:12 284s | 284s 1396 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1407:12 284s | 284s 1407 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1420:12 284s | 284s 1420 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1437:12 284s | 284s 1437 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1447:12 284s | 284s 1447 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1542:12 284s | 284s 1542 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1559:12 284s | 284s 1559 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1574:12 284s | 284s 1574 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1589:12 284s | 284s 1589 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1601:12 284s | 284s 1601 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1613:12 284s | 284s 1613 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1630:12 284s | 284s 1630 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1642:12 284s | 284s 1642 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1655:12 284s | 284s 1655 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1669:12 284s | 284s 1669 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1687:12 284s | 284s 1687 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1702:12 284s | 284s 1702 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1721:12 284s | 284s 1721 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1737:12 284s | 284s 1737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1753:12 284s | 284s 1753 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1767:12 284s | 284s 1767 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1781:12 284s | 284s 1781 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1790:12 284s | 284s 1790 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1800:12 284s | 284s 1800 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1811:12 284s | 284s 1811 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1859:12 284s | 284s 1859 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1872:12 284s | 284s 1872 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1884:12 284s | 284s 1884 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1907:12 284s | 284s 1907 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1925:12 284s | 284s 1925 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1948:12 284s | 284s 1948 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1959:12 284s | 284s 1959 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1970:12 284s | 284s 1970 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1982:12 284s | 284s 1982 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2000:12 284s | 284s 2000 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2011:12 284s | 284s 2011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2101:12 284s | 284s 2101 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2112:12 284s | 284s 2112 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2125:12 284s | 284s 2125 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2135:12 284s | 284s 2135 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2145:12 284s | 284s 2145 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2156:12 284s | 284s 2156 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2167:12 284s | 284s 2167 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2179:12 284s | 284s 2179 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2191:12 284s | 284s 2191 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2201:12 284s | 284s 2201 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2212:12 284s | 284s 2212 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2225:12 284s | 284s 2225 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2236:12 284s | 284s 2236 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2247:12 284s | 284s 2247 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2259:12 284s | 284s 2259 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2269:12 284s | 284s 2269 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2279:12 284s | 284s 2279 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2298:12 284s | 284s 2298 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2308:12 284s | 284s 2308 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2319:12 284s | 284s 2319 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2330:12 284s | 284s 2330 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2342:12 284s | 284s 2342 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2355:12 284s | 284s 2355 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2373:12 284s | 284s 2373 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2385:12 284s | 284s 2385 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2400:12 284s | 284s 2400 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2419:12 284s | 284s 2419 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2448:12 284s | 284s 2448 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2460:12 284s | 284s 2460 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2474:12 284s | 284s 2474 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2509:12 284s | 284s 2509 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2524:12 284s | 284s 2524 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2535:12 284s | 284s 2535 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2547:12 284s | 284s 2547 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2563:12 284s | 284s 2563 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2648:12 284s | 284s 2648 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2660:12 284s | 284s 2660 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2676:12 284s | 284s 2676 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2686:12 284s | 284s 2686 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2696:12 284s | 284s 2696 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2705:12 284s | 284s 2705 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2714:12 284s | 284s 2714 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2723:12 284s | 284s 2723 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2737:12 284s | 284s 2737 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2755:12 284s | 284s 2755 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2765:12 284s | 284s 2765 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2775:12 284s | 284s 2775 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2787:12 284s | 284s 2787 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2799:12 284s | 284s 2799 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2809:12 284s | 284s 2809 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2819:12 284s | 284s 2819 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2829:12 284s | 284s 2829 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2852:12 284s | 284s 2852 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2861:12 284s | 284s 2861 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2871:12 284s | 284s 2871 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2880:12 284s | 284s 2880 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2891:12 284s | 284s 2891 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2902:12 284s | 284s 2902 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2935:12 284s | 284s 2935 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2945:12 284s | 284s 2945 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2957:12 284s | 284s 2957 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2966:12 284s | 284s 2966 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2975:12 284s | 284s 2975 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2987:12 284s | 284s 2987 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:3011:12 284s | 284s 3011 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:3021:12 284s | 284s 3021 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:590:23 284s | 284s 590 | #[cfg(any(syn_no_non_exhaustive, not(feature = "full")))] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1199:19 284s | 284s 1199 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1372:19 284s | 284s 1372 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:1536:19 284s | 284s 1536 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2095:19 284s | 284s 2095 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2503:19 284s | 284s 2503 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `syn_no_non_exhaustive` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/gen/debug.rs:2642:19 284s | 284s 2642 | #[cfg(syn_no_non_exhaustive)] 284s | ^^^^^^^^^^^^^^^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(syn_no_non_exhaustive)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(syn_no_non_exhaustive)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1065:12 284s | 284s 1065 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1072:12 284s | 284s 1072 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1083:12 284s | 284s 1083 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1090:12 284s | 284s 1090 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1100:12 284s | 284s 1100 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1116:12 284s | 284s 1116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1126:12 284s | 284s 1126 | #[cfg_attr(doc_cfg, doc(cfg(feature = "parsing")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1291:12 284s | 284s 1291 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1299:12 284s | 284s 1299 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1303:12 284s | 284s 1303 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/parse.rs:1311:12 284s | 284s 1311 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/reserved.rs:29:12 284s | 284s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "clone-impls")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: unexpected `cfg` condition name: `doc_cfg` 284s --> /tmp/tmp.2RIEl7KkVf/registry/syn-1.0.109/src/reserved.rs:39:12 284s | 284s 39 | #[cfg_attr(doc_cfg, doc(cfg(feature = "extra-traits")))] 284s | ^^^^^^^ 284s | 284s = help: consider using a Cargo feature instead 284s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 284s [lints.rust] 284s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 284s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 284s = note: see for more information about checking conditional configuration 284s 284s warning: `bit-vec` (lib) generated 8 warnings (1 duplicate) 284s Compiling thiserror v1.0.69 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name build_script_build --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69/build.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=dd39d6a520033168 -C extra-filename=-dd39d6a520033168 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/build/thiserror-dd39d6a520033168 -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --cap-lints warn` 284s Compiling minimal-lexical v0.2.1 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=minimal_lexical CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/minimal-lexical-0.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/minimal-lexical-0.2.1/Cargo.toml CARGO_PKG_AUTHORS='Alex Huszagh ' CARGO_PKG_DESCRIPTION='Fast float parsing conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=minimal-lexical CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/minimal-lexical' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.2.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name minimal_lexical --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/minimal-lexical-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compact", "default", "lint", "nightly", "std"))' -C metadata=061c55d7bafd6059 -C extra-filename=-061c55d7bafd6059 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 284s warning: `minimal-lexical` (lib) generated 1 warning (1 duplicate) 284s Compiling fixedbitset v0.4.2 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=fixedbitset CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/fixedbitset-0.4.2 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/fixedbitset-0.4.2/Cargo.toml CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='FixedBitSet is a simple bitset collection' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fixedbitset CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/fixedbitset' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name fixedbitset --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/fixedbitset-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=4f27d8f507162a0c -C extra-filename=-4f27d8f507162a0c --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 284s warning: `fixedbitset` (lib) generated 1 warning (1 duplicate) 284s Compiling quick-error v2.0.1 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets :Colin Kiegel ' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write. 284s ' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/quick-error' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=quick-error CARGO_PKG_README='' CARGO_PKG_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.0.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name quick_error --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/quick-error-2.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=78f4ccd4ae208433 -C extra-filename=-78f4ccd4ae208433 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 284s warning: `quick-error` (lib) generated 1 warning (1 duplicate) 284s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant :bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for 284s 1, 2 or 3 byte search and single substring search. 284s ' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/memchr' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/memchr' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=2.7.4 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name memchr --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/memchr-2.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=944ab1891fd21906 -C extra-filename=-944ab1891fd21906 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 285s warning: `memchr` (lib) generated 1 warning (1 duplicate) 285s Compiling nom v7.1.3 285s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/nom-7.1.3 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/nom-7.1.3/Cargo.toml CARGO_PKG_AUTHORS='contact@geoffroycouprie.com' CARGO_PKG_DESCRIPTION='A byte-oriented, zero-copy, parser combinators library' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nom CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=7.1.3 CARGO_PKG_VERSION_MAJOR=7 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name nom --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/nom-7.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "docsrs", "std"))' -C metadata=40d655e2fb328781 -C extra-filename=-40d655e2fb328781 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern memchr=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern minimal_lexical=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libminimal_lexical-061c55d7bafd6059.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 285s warning: unexpected `cfg` condition value: `cargo-clippy` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:375:13 285s | 285s 375 | #![cfg_attr(feature = "cargo-clippy", allow(clippy::doc_markdown))] 285s | ^^^^^^^^^^^^^^^^^^^^^^^^ 285s | 285s = note: expected values for `feature` are: `alloc`, `default`, `docsrs`, and `std` 285s = help: consider adding `cargo-clippy` as a feature in `Cargo.toml` 285s = note: see for more information about checking conditional configuration 285s = note: `#[warn(unexpected_cfgs)]` on by default 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:379:12 285s | 285s 379 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = 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` 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:391:12 285s | 285s 391 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:418:14 285s | 285s 418 | #[cfg_attr(nightly, allow(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unused import: `self::str::*` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/lib.rs:439:9 285s | 285s 439 | pub use self::str::*; 285s | ^^^^^^^^^^^^ 285s | 285s = note: `#[warn(unused_imports)]` on by default 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:49:12 285s | 285s 49 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:96:12 285s | 285s 96 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:340:12 285s | 285s 340 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:357:12 285s | 285s 357 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:374:12 285s | 285s 374 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:392:12 285s | 285s 392 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:409:12 285s | 285s 409 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 285s warning: unexpected `cfg` condition name: `nightly` 285s --> /usr/share/cargo/registry/nom-7.1.3/src/internal.rs:430:12 285s | 285s 430 | #[cfg_attr(nightly, warn(rustdoc::missing_doc_code_examples))] 285s | ^^^^^^^ 285s | 285s = help: consider using a Cargo feature instead 285s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 285s [lints.rust] 285s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(nightly)'] } 285s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(nightly)");` to the top of the `build.rs` 285s = note: see for more information about checking conditional configuration 285s 287s warning: `nom` (lib) generated 14 warnings (1 duplicate) 287s Compiling rusty-fork v0.3.0 287s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rusty_fork CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rusty-fork-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rusty-fork-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Cross-platform library for running Rust tests in sub-processes using a 287s fork-like interface. 287s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty-fork CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/altsysrq/rusty-fork' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name rusty_fork --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/rusty-fork-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="timeout"' --cfg 'feature="wait-timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "timeout", "wait-timeout"))' -C metadata=50649851fa84c472 -C extra-filename=-50649851fa84c472 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern fnv=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern quick_error=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libquick_error-78f4ccd4ae208433.rmeta --extern tempfile=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern wait_timeout=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwait_timeout-c8041ffbea216b96.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 287s warning: `rusty-fork` (lib) generated 1 warning (1 duplicate) 287s Compiling petgraph v0.6.4 287s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=petgraph CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/petgraph-0.6.4 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/petgraph-0.6.4/Cargo.toml CARGO_PKG_AUTHORS='bluss:mitchmindtree' CARGO_PKG_DESCRIPTION='Graph data structure library. Provides graph types and graph algorithms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=petgraph CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/petgraph/petgraph' CARGO_PKG_RUST_VERSION=1.64 CARGO_PKG_VERSION=0.6.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name petgraph --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/petgraph-0.6.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="graphmap"' --cfg 'feature="matrix_graph"' --cfg 'feature="stable_graph"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("all", "default", "generate", "graphmap", "matrix_graph", "serde", "serde-1", "serde_derive", "stable_graph", "unstable"))' -C metadata=11faea72e600ec28 -C extra-filename=-11faea72e600ec28 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern fixedbitset=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libfixedbitset-4f27d8f507162a0c.rmeta --extern indexmap=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libindexmap-add402dbf0c10c1b.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 287s warning: unexpected `cfg` condition value: `quickcheck` 287s --> /usr/share/cargo/registry/petgraph-0.6.4/src/lib.rs:149:7 287s | 287s 149 | #[cfg(feature = "quickcheck")] 287s | ^^^^^^^^^^^^^^^^^^^^^^ 287s | 287s = note: expected values for `feature` are: `all`, `default`, `generate`, `graphmap`, `matrix_graph`, `serde`, `serde-1`, `serde_derive`, `stable_graph`, and `unstable` 287s = help: consider adding `quickcheck` as a feature in `Cargo.toml` 287s = note: see for more information about checking conditional configuration 287s = note: `#[warn(unexpected_cfgs)]` on by default 287s 287s warning: use of deprecated method `indexmap::IndexMap::::remove`: `remove` disrupts the map order -- use `swap_remove` or `shift_remove` for explicit behavior. 287s --> /usr/share/cargo/registry/petgraph-0.6.4/src/graphmap.rs:370:33 287s | 287s 370 | let weight = self.edges.remove(&Self::edge_key(a, b)); 287s | ^^^^^^ 287s | 287s = note: `#[warn(deprecated)]` on by default 287s 288s warning: method `node_bound_with_dummy` is never used 288s --> /usr/share/cargo/registry/petgraph-0.6.4/src/algo/matching.rs:108:8 288s | 288s 106 | trait WithDummy: NodeIndexable { 288s | --------- method in this trait 288s 107 | fn dummy_idx(&self) -> usize; 288s 108 | fn node_bound_with_dummy(&self) -> usize; 288s | ^^^^^^^^^^^^^^^^^^^^^ 288s | 288s = note: `#[warn(dead_code)]` on by default 288s 288s warning: field `first_error` is never read 288s --> /usr/share/cargo/registry/petgraph-0.6.4/src/csr.rs:134:5 288s | 288s 133 | pub struct EdgesNotSorted { 288s | -------------- field in this struct 288s 134 | first_error: (usize, usize), 288s | ^^^^^^^^^^^ 288s | 288s = note: `EdgesNotSorted` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis 288s 288s warning: `petgraph` (lib) generated 5 warnings (1 duplicate) 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CFG_PANIC=unwind CARGO_CFG_TARGET_ABI='' CARGO_CFG_TARGET_ARCH=s390x CARGO_CFG_TARGET_ENDIAN=big CARGO_CFG_TARGET_ENV=gnu CARGO_CFG_TARGET_FAMILY=unix CARGO_CFG_TARGET_HAS_ATOMIC=128,16,32,64,8,ptr CARGO_CFG_TARGET_OS=linux CARGO_CFG_TARGET_POINTER_WIDTH=64 CARGO_CFG_TARGET_VENDOR=unknown CARGO_CFG_UNIX='' CARGO_ENCODED_RUSTFLAGS='-Cdebuginfo=2-Cstrip=none--cap-lintswarn-Clinker=s390x-linux-gnu-gcc-Clink-arg=-Wl,-Bsymbolic-functions-Clink-arg=-flto=auto-Clink-arg=-ffat-lto-objects-Clink-arg=-Wl,-z,relro--remap-path-prefix/usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/thiserror-dd39d6a520033168/build-script-build` 288s [thiserror 1.0.69] cargo:rerun-if-changed=build/probe.rs 288s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(error_generic_member_access) 288s [thiserror 1.0.69] cargo:rustc-check-cfg=cfg(thiserror_nightly_testing) 288s [thiserror 1.0.69] cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP 288s Compiling bit-set v0.8.0 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=bit_set CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/bit-set-0.8.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/bit-set-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Alexis Beingessner ' CARGO_PKG_DESCRIPTION='A set of bits' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/bit-set' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bit-set CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/bit-set' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name bit_set --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/bit-set-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "serde", "std"))' -C metadata=89b3c1c57b5a03ce -C extra-filename=-89b3c1c57b5a03ce --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bit_vec=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 288s warning: `bit-set` (lib) generated 1 warning (1 duplicate) 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Numeric traits for generic mathematics' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-traits' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=0.2.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/num-traits-066f8120c52dc63a/out rustc --crate-name num_traits --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/num-traits-0.2.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "i128", "libm", "std"))' -C metadata=0a13ea327a69f660 -C extra-filename=-0a13ea327a69f660 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg has_total_cmp` 288s warning: unexpected `cfg` condition name: `has_total_cmp` 288s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 288s | 288s 2305 | #[cfg(has_total_cmp)] 288s | ^^^^^^^^^^^^^ 288s ... 288s 2325 | totalorder_impl!(f64, i64, u64, 64); 288s | ----------------------------------- in this macro invocation 288s | 288s = help: expected names are: `clippy`, `debug_assertions`, `doc`, `docsrs`, `doctest`, `feature`, `fmt_debug`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `rustfmt`, `sanitize`, `sanitizer_cfi_generalize_pointers`, `sanitizer_cfi_normalize_integers`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `ub_checks`, `unix`, and `windows` 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s = note: `#[warn(unexpected_cfgs)]` on by default 288s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 288s 288s warning: unexpected `cfg` condition name: `has_total_cmp` 288s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 288s | 288s 2311 | #[cfg(not(has_total_cmp))] 288s | ^^^^^^^^^^^^^ 288s ... 288s 2325 | totalorder_impl!(f64, i64, u64, 64); 288s | ----------------------------------- in this macro invocation 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 288s 288s warning: unexpected `cfg` condition name: `has_total_cmp` 288s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2305:19 288s | 288s 2305 | #[cfg(has_total_cmp)] 288s | ^^^^^^^^^^^^^ 288s ... 288s 2326 | totalorder_impl!(f32, i32, u32, 32); 288s | ----------------------------------- in this macro invocation 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 288s 288s warning: unexpected `cfg` condition name: `has_total_cmp` 288s --> /usr/share/cargo/registry/num-traits-0.2.19/src/float.rs:2311:23 288s | 288s 2311 | #[cfg(not(has_total_cmp))] 288s | ^^^^^^^^^^^^^ 288s ... 288s 2326 | totalorder_impl!(f32, i32, u32, 32); 288s | ----------------------------------- in this macro invocation 288s | 288s = help: consider using a Cargo feature instead 288s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 288s [lints.rust] 288s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(has_total_cmp)'] } 288s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(has_total_cmp)");` to the top of the `build.rs` 288s = note: see for more information about checking conditional configuration 288s = note: this warning originates in the macro `totalorder_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 288s 288s warning: `num-traits` (lib) generated 5 warnings (1 duplicate) 288s Compiling rand v0.8.5 288s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rand-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rand-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality. 288s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name rand --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/rand-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="libc"' --cfg 'feature="rand_chacha"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "default", "getrandom", "libc", "log", "min_const_gen", "nightly", "rand_chacha", "serde", "serde1", "small_rng", "std", "std_rng"))' -C metadata=ef125e0fa8f0a0b9 -C extra-filename=-ef125e0fa8f0a0b9 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --extern rand_chacha=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_core=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:52:13 289s | 289s 52 | #![cfg_attr(feature = "simd_support", feature(stdsimd))] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s = note: `#[warn(unexpected_cfgs)]` on by default 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/lib.rs:53:13 289s | 289s 53 | #![cfg_attr(doc_cfg, feature(doc_cfg))] 289s | ^^^^^^^ 289s | 289s = 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` 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/mod.rs:116:12 289s | 289s 116 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `features` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/distribution.rs:162:7 289s | 289s 162 | #[cfg(features = "nightly")] 289s | ^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: see for more information about checking conditional configuration 289s help: there is a config with a similar name and value 289s | 289s 162 | #[cfg(feature = "nightly")] 289s | ~~~~~~~ 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:15:7 289s | 289s 15 | #[cfg(feature = "simd_support")] use packed_simd::*; 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:156:7 289s | 289s 156 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:158:7 289s | 289s 158 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:160:7 289s | 289s 160 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:162:7 289s | 289s 162 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:165:7 289s | 289s 165 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:167:7 289s | 289s 167 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/float.rs:169:7 289s | 289s 169 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:13:32 289s | 289s 13 | #[cfg(all(target_arch = "x86", feature = "simd_support"))] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:15:35 289s | 289s 15 | #[cfg(all(target_arch = "x86_64", feature = "simd_support"))] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:19:7 289s | 289s 19 | #[cfg(feature = "simd_support")] use packed_simd::*; 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:112:7 289s | 289s 112 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:142:7 289s | 289s 142 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:144:7 289s | 289s 144 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:146:7 289s | 289s 146 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:148:7 289s | 289s 148 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:150:7 289s | 289s 150 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:152:7 289s | 289s 152 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/integer.rs:155:5 289s | 289s 155 | feature = "simd_support", 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:11:7 289s | 289s 11 | #[cfg(feature = "simd_support")] use packed_simd::*; 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:144:7 289s | 289s 144 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `std` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:235:11 289s | 289s 235 | #[cfg(not(std))] 289s | ^^^ help: found config with similar value: `feature = "std"` 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:363:7 289s | 289s 363 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:423:7 289s | 289s 423 | #[cfg(feature="simd_support")] simd_impl! { f32x2, f32, m32x2, u32x2 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:424:7 289s | 289s 424 | #[cfg(feature="simd_support")] simd_impl! { f32x4, f32, m32x4, u32x4 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:425:7 289s | 289s 425 | #[cfg(feature="simd_support")] simd_impl! { f32x8, f32, m32x8, u32x8 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:426:7 289s | 289s 426 | #[cfg(feature="simd_support")] simd_impl! { f32x16, f32, m32x16, u32x16 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:427:7 289s | 289s 427 | #[cfg(feature="simd_support")] simd_impl! { f64x2, f64, m64x2, u64x2 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:428:7 289s | 289s 428 | #[cfg(feature="simd_support")] simd_impl! { f64x4, f64, m64x4, u64x4 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:429:7 289s | 289s 429 | #[cfg(feature="simd_support")] simd_impl! { f64x8, f64, m64x8, u64x8 } 289s | ^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `std` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 289s | 289s 291 | #[cfg(not(std))] 289s | ^^^ help: found config with similar value: `feature = "std"` 289s ... 289s 359 | scalar_float_impl!(f32, u32); 289s | ---------------------------- in this macro invocation 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 289s 289s warning: unexpected `cfg` condition name: `std` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:291:19 289s | 289s 291 | #[cfg(not(std))] 289s | ^^^ help: found config with similar value: `feature = "std"` 289s ... 289s 360 | scalar_float_impl!(f64, u64); 289s | ---------------------------- in this macro invocation 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(std)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(std)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s = note: this warning originates in the macro `scalar_float_impl` (in Nightly builds, run with -Z macro-backtrace for more info) 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:80:12 289s | 289s 80 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/weighted_index.rs:429:12 289s | 289s 429 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:121:7 289s | 289s 121 | #[cfg(feature = "simd_support")] use packed_simd::*; 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:572:7 289s | 289s 572 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:679:7 289s | 289s 679 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:687:7 289s | 289s 687 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:696:7 289s | 289s 696 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:706:7 289s | 289s 706 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1001:7 289s | 289s 1001 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1003:7 289s | 289s 1003 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1005:7 289s | 289s 1005 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1007:7 289s | 289s 1007 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1010:7 289s | 289s 1010 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1012:7 289s | 289s 1012 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition value: `simd_support` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/uniform.rs:1014:7 289s | 289s 1014 | #[cfg(feature = "simd_support")] 289s | ^^^^^^^^^^^^^^^^^^^^^^^^ 289s | 289s = note: expected values for `feature` are: `alloc`, `default`, `getrandom`, `libc`, `log`, `min_const_gen`, `nightly`, `rand_chacha`, `serde`, `serde1`, `small_rng`, `std`, and `std_rng` 289s = help: consider adding `simd_support` as a feature in `Cargo.toml` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/rng.rs:395:12 289s | 289s 395 | #[cfg_attr(doc_cfg, doc(cfg(feature = "min_const_gen")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:99:12 289s | 289s 99 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/rngs/mod.rs:118:12 289s | 289s 118 | #[cfg_attr(doc_cfg, doc(cfg(feature = "getrandom")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:29:12 289s | 289s 29 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:623:12 289s | 289s 623 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12 289s | 289s 276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16 289s | 289s 114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16 289s | 289s 142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16 289s | 289s 170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16 289s | 289s 219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: unexpected `cfg` condition name: `doc_cfg` 289s --> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16 289s | 289s 465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))] 289s | ^^^^^^^ 289s | 289s = help: consider using a Cargo feature instead 289s = help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint: 289s [lints.rust] 289s unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] } 289s = help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs` 289s = note: see for more information about checking conditional configuration 289s 289s warning: trait `Float` is never used 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18 289s | 289s 238 | pub(crate) trait Float: Sized { 289s | ^^^^^ 289s | 289s = note: `#[warn(dead_code)]` on by default 289s 289s warning: associated items `lanes`, `extract`, and `replace` are never used 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8 289s | 289s 245 | pub(crate) trait FloatAsSIMD: Sized { 289s | ----------- associated items in this trait 289s 246 | #[inline(always)] 289s 247 | fn lanes() -> usize { 289s | ^^^^^ 289s ... 289s 255 | fn extract(self, index: usize) -> Self { 289s | ^^^^^^^ 289s ... 289s 260 | fn replace(self, index: usize, new_value: Self) -> Self { 289s | ^^^^^^^ 289s 289s warning: method `all` is never used 289s --> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8 289s | 289s 266 | pub(crate) trait BoolAsSIMD: Sized { 289s | ---------- method in this trait 289s 267 | fn any(self) -> bool; 289s 268 | fn all(self) -> bool; 289s | ^^^ 289s 289s warning: `rand` (lib) generated 66 warnings (1 duplicate) 289s 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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0--remap-path-prefix/tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry-Ctarget-feature=+backchain' CARGO_FEATURE_DEFAULT=1 CARGO_FEATURE_EVENT=1 CARGO_FEATURE_FS=1 CARGO_FEATURE_PROCESS=1 CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' DEBUG=true HOST=s390x-unknown-linux-gnu LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/debug/deps:/tmp/tmp.2RIEl7KkVf/target/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' NUM_JOBS=2 OPT_LEVEL=0 OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out PROFILE=debug RUSTC=rustc RUSTDOC=rustdoc TARGET=s390x-unknown-linux-gnu /tmp/tmp.2RIEl7KkVf/target/debug/build/nix-18c9c6ab59c87315/build-script-build` 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(android) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(dragonfly) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(ios) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsd) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(illumos) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux) 289s [nix 0.29.0] cargo:rustc-cfg=linux 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(macos) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsd) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(openbsd) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solaris) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(watchos) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(tvos) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(visionos) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 289s [nix 0.29.0] cargo:rustc-cfg=linux_android 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(apple_targets) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(bsd_without_apple) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(linux_android) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(freebsdlike) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(netbsdlike) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(solarish) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(fbsd14) 289s [nix 0.29.0] cargo:rustc-check-cfg=cfg(qemu) 289s Compiling wayland-protocols v0.31.2 289s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-0.31.2 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-0.31.2/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the officials wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.31.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wayland_protocols --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-0.31.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "staging", "unstable", "wayland-client", "wayland-server"))' -C metadata=bc287ed77051523c -C extra-filename=-bc287ed77051523c --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_client=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rmeta --extern wayland_scanner=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 289s warning: `syn` (lib) generated 1851 warnings (270 duplicates) 289s Compiling rand_xorshift v0.3.0 289s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/rand_xorshift-0.3.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/rand_xorshift-0.3.0/Cargo.toml CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator 289s ' CARGO_PKG_HOMEPAGE='https://rust-random.github.io/book' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-random/rngs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.3.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name rand_xorshift --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/rand_xorshift-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("serde", "serde1"))' -C metadata=6f9a9169531a5b9a -C extra-filename=-6f9a9169531a5b9a --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern rand_core=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_core-3c7246ca3f419bbc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 289s warning: `rand_xorshift` (lib) generated 1 warning (1 duplicate) 289s Compiling thiserror-impl v1.0.69 289s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='Implementation detail of the `thiserror` crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror-impl CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/thiserror-impl-1.0.69/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=47c26cf9f34eaa1a -C extra-filename=-47c26cf9f34eaa1a --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libsyn-b2618e2f2b5bd1a7.rlib --extern proc_macro --cap-lints warn` 291s warning: `wayland-protocols` (lib) generated 1 warning (1 duplicate) 291s Compiling regex-syntax v0.8.5 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/regex-syntax-0.8.5 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/regex-syntax-0.8.5/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers:Andrew Gallant ' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex/tree/master/regex-syntax' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.8.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name regex_syntax --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/regex-syntax-0.8.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="unicode"' --cfg 'feature="unicode-age"' --cfg 'feature="unicode-bool"' --cfg 'feature="unicode-case"' --cfg 'feature="unicode-gencat"' --cfg 'feature="unicode-perl"' --cfg 'feature="unicode-script"' --cfg 'feature="unicode-segment"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("arbitrary", "default", "std", "unicode", "unicode-age", "unicode-bool", "unicode-case", "unicode-gencat", "unicode-perl", "unicode-script", "unicode-segment"))' -C metadata=4fc5539eea58731c -C extra-filename=-4fc5539eea58731c --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s Compiling unarray v0.1.4 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=unarray CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/unarray-0.1.4 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/unarray-0.1.4/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Utilities for working with uninitialized arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unarray CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/cameron1024/unarray' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name unarray --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/unarray-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=4bc01abf17def2c3 -C extra-filename=-4bc01abf17def2c3 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s warning: `unarray` (lib) generated 1 warning (1 duplicate) 291s Compiling lazy_static v1.5.0 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/lazy_static-1.5.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/lazy_static-1.5.0/Cargo.toml CARGO_PKG_AUTHORS='Marvin Löbel ' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.5.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name lazy_static --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/lazy_static-1.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("spin", "spin_no_std"))' -C metadata=fa782e2884b94cf1 -C extra-filename=-fa782e2884b94cf1 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 291s warning: elided lifetime has a name 291s --> /usr/share/cargo/registry/lazy_static-1.5.0/src/inline_lazy.rs:26:43 291s | 291s 26 | pub fn get(&'static self, f: F) -> &T 291s | ^ this elided lifetime gets resolved as `'static` 291s | 291s = note: `#[warn(elided_named_lifetimes)]` on by default 291s help: consider specifying it explicitly 291s | 291s 26 | pub fn get(&'static self, f: F) -> &'static T 291s | +++++++ 291s 291s warning: `lazy_static` (lib) generated 2 warnings (1 duplicate) 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay ' CARGO_PKG_DESCRIPTION='derive(Error)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thiserror CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_RUST_VERSION=1.61 CARGO_PKG_VERSION=1.0.69 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=69 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/thiserror-11349f755e8d8deb/out rustc --crate-name thiserror --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/thiserror-1.0.69/src/lib.rs --error-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=5cbb283d943c993e -C extra-filename=-5cbb283d943c993e --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern thiserror_impl=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libthiserror_impl-47c26cf9f34eaa1a.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'` 291s warning: `thiserror` (lib) generated 1 warning (1 duplicate) 291s Compiling wayland-protocols-wlr v0.2.0 291s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wayland_protocols_wlr CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-wlr-0.2.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-wlr-0.2.0/Cargo.toml CARGO_PKG_AUTHORS='Elinor Berger ' CARGO_PKG_DESCRIPTION='Generated API for the WLR wayland protocol extensions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wayland-protocols-wlr CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smithay/wayland-rs' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=0.2.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wayland_protocols_wlr --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/wayland-protocols-wlr-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="client"' --cfg 'feature="server"' --cfg 'feature="wayland-client"' --cfg 'feature="wayland-server"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("client", "server", "wayland-client", "wayland-server"))' -C metadata=98900a7b8b7a3e83 -C extra-filename=-98900a7b8b7a3e83 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern wayland_backend=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rmeta --extern wayland_client=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rmeta --extern wayland_protocols=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-bc287ed77051523c.rmeta --extern wayland_scanner=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libwayland_scanner-c58251dd28084e37.so --extern wayland_server=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 294s warning: `wayland-protocols-wlr` (lib) generated 1 warning (1 duplicate) 294s Compiling proptest v1.6.0 294s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/proptest-1.6.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/proptest-1.6.0/Cargo.toml CARGO_PKG_AUTHORS='Jason Lingle' CARGO_PKG_DESCRIPTION='Hypothesis-like property-based testing and shrinking. 294s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION=1.65 CARGO_PKG_VERSION=1.6.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name proptest --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/proptest-1.6.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="bit-set"' --cfg 'feature="default"' --cfg 'feature="fork"' --cfg 'feature="lazy_static"' --cfg 'feature="regex-syntax"' --cfg 'feature="rusty-fork"' --cfg 'feature="std"' --cfg 'feature="tempfile"' --cfg 'feature="timeout"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("alloc", "atomic64bit", "bit-set", "default", "default-code-coverage", "fork", "handle-panics", "lazy_static", "no_std", "regex-syntax", "rusty-fork", "std", "tempfile", "timeout", "unstable"))' -C metadata=4bfa1843376ba424 -C extra-filename=-4bfa1843376ba424 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bit_set=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbit_set-89b3c1c57b5a03ce.rmeta --extern bit_vec=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbit_vec-f5a472a8e3d383f4.rmeta --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern lazy_static=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblazy_static-fa782e2884b94cf1.rmeta --extern num_traits=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libnum_traits-0a13ea327a69f660.rmeta --extern rand=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand-ef125e0fa8f0a0b9.rmeta --extern rand_chacha=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_chacha-c588a1d47b064f6f.rmeta --extern rand_xorshift=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librand_xorshift-6f9a9169531a5b9a.rmeta --extern regex_syntax=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libregex_syntax-4fc5539eea58731c.rmeta --extern rusty_fork=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/librusty_fork-50649851fa84c472.rmeta --extern tempfile=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rmeta --extern unarray=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libunarray-4bc01abf17def2c3.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 294s warning: unexpected `cfg` condition value: `attr-macro` 294s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:91:7 294s | 294s 91 | #[cfg(feature = "attr-macro")] 294s | ^^^^^^^^^^^^^^^^^^^^^^ 294s | 294s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 294s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 294s = note: see for more information about checking conditional configuration 294s = note: `#[warn(unexpected_cfgs)]` on by default 294s 294s warning: unexpected `cfg` condition value: `attr-macro` 294s --> /usr/share/cargo/registry/proptest-1.6.0/src/lib.rs:94:7 294s | 294s 94 | #[cfg(feature = "attr-macro")] 294s | ^^^^^^^^^^^^^^^^^^^^^^ 294s | 294s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 294s = help: consider adding `attr-macro` as a feature in `Cargo.toml` 294s = note: see for more information about checking conditional configuration 294s 294s warning: unexpected `cfg` condition value: `hardware-rng` 294s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:487:9 294s | 294s 487 | feature = "hardware-rng" 294s | ^^^^^^^^^^^^^^^^^^^^^^^^ 294s | 294s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 294s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 294s = note: see for more information about checking conditional configuration 294s 294s warning: unexpected `cfg` condition value: `hardware-rng` 294s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/rng.rs:456:13 294s | 294s 456 | feature = "hardware-rng" 294s | ^^^^^^^^^^^^^^^^^^^^^^^^ 294s | 294s = note: expected values for `feature` are: `alloc`, `atomic64bit`, `bit-set`, `default`, `default-code-coverage`, `fork`, `handle-panics`, `lazy_static`, `no_std`, `regex-syntax`, `rusty-fork`, `std`, `tempfile`, `timeout`, and `unstable` 294s = help: consider adding `hardware-rng` as a feature in `Cargo.toml` 294s = note: see for more information about checking conditional configuration 294s 294s warning: `regex-syntax` (lib) generated 1 warning (1 duplicate) 294s Compiling proptest-derive v0.4.0 294s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=proptest_derive CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/proptest-derive-0.4.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/proptest-derive-0.4.0/Cargo.toml CARGO_PKG_AUTHORS='Mazdak Farrokhzad ' CARGO_PKG_DESCRIPTION='Custom-derive for the Arbitrary trait of proptest. 294s ' CARGO_PKG_HOMEPAGE='https://proptest-rs.github.io/proptest/proptest-derive/index.html' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proptest-derive CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/proptest-rs/proptest' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.4.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name proptest_derive --edition=2018 /tmp/tmp.2RIEl7KkVf/registry/proptest-derive-0.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values())' -C metadata=6474c4970bc8d659 -C extra-filename=-6474c4970bc8d659 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 295s warning: struct `NoopFailurePersistence` is never constructed 295s --> /usr/share/cargo/registry/proptest-1.6.0/src/test_runner/failure_persistence/noop.rs:19:8 295s | 295s 19 | struct NoopFailurePersistence; 295s | ^^^^^^^^^^^^^^^^^^^^^^ 295s | 295s = note: `NoopFailurePersistence` has a derived impl for the trait `Default`, but this is intentionally ignored during dead code analysis 295s = note: `#[warn(dead_code)]` on by default 295s 296s Compiling derive-new v0.5.8 296s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=derive_new CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/derive-new-0.5.8 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/derive-new-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Nick Cameron ' CARGO_PKG_DESCRIPTION='`#[derive(new)]` implements simple constructor functions for structs and enums.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=derive-new CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nrc/derive-new' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name derive_new --edition=2015 /tmp/tmp.2RIEl7KkVf/registry/derive-new-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("default", "std"))' -C metadata=d36da1d6c0ebb951 -C extra-filename=-d36da1d6c0ebb951 --out-dir /tmp/tmp.2RIEl7KkVf/target/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern proc_macro2=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproc_macro2-ccebc93d1de6cfe5.rlib --extern quote=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libquote-dc92c6f25ee0f0c6.rlib --extern syn=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libsyn-d2c69931b37190d8.rlib --extern proc_macro --cap-lints warn` 297s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0/Cargo.toml CARGO_PKG_AUTHORS='The nix-rust Project Developers' CARGO_PKG_DESCRIPTION='Rust friendly bindings to *nix APIs' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=nix CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_RUST_VERSION=1.69 CARGO_PKG_VERSION=0.29.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=29 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps OUT_DIR=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/build/nix-dc03744934f58403/out rustc --crate-name nix --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/nix-0.29.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="event"' --cfg 'feature="fs"' --cfg 'feature="process"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("acct", "aio", "default", "dir", "env", "event", "fanotify", "feature", "fs", "hostname", "inotify", "ioctl", "kmod", "memoffset", "mman", "mount", "mqueue", "net", "personality", "pin-utils", "poll", "process", "pthread", "ptrace", "quota", "reboot", "resource", "sched", "signal", "socket", "term", "time", "ucontext", "uio", "user", "zerocopy"))' -C metadata=0930f78ed5a2e234 -C extra-filename=-0930f78ed5a2e234 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern bitflags=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libbitflags-65f3f529c7b65778.rmeta --extern cfg_if=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libcfg_if-ff3ff84a061de73f.rmeta --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain --cfg linux --cfg linux_android --check-cfg 'cfg(android)' --check-cfg 'cfg(dragonfly)' --check-cfg 'cfg(ios)' --check-cfg 'cfg(freebsd)' --check-cfg 'cfg(illumos)' --check-cfg 'cfg(linux)' --check-cfg 'cfg(macos)' --check-cfg 'cfg(netbsd)' --check-cfg 'cfg(openbsd)' --check-cfg 'cfg(solaris)' --check-cfg 'cfg(watchos)' --check-cfg 'cfg(tvos)' --check-cfg 'cfg(visionos)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(apple_targets)' --check-cfg 'cfg(bsd)' --check-cfg 'cfg(bsd_without_apple)' --check-cfg 'cfg(linux_android)' --check-cfg 'cfg(freebsdlike)' --check-cfg 'cfg(netbsdlike)' --check-cfg 'cfg(solarish)' --check-cfg 'cfg(fbsd14)' --check-cfg 'cfg(qemu)'` 298s warning: `proptest` (lib) generated 6 warnings (1 duplicate) 298s Compiling tree_magic_mini v3.1.6 298s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=tree_magic_mini CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/tree_magic_mini-3.1.6 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/tree_magic_mini-3.1.6/Cargo.toml CARGO_PKG_AUTHORS='Matt Brubeck :Allison Hancock ' CARGO_PKG_DESCRIPTION='Determines the MIME type of a file by traversing a filetype tree.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tree_magic_mini CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/tree_magic/' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=3.1.6 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name tree_magic_mini --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/tree_magic_mini-3.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("with-gpl-data"))' -C metadata=242d3fc89e043ebe -C extra-filename=-242d3fc89e043ebe --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern fnv=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libfnv-a68fdaac9d04d051.rmeta --extern memchr=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libmemchr-944ab1891fd21906.rmeta --extern nom=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libnom-40d655e2fb328781.rmeta --extern once_cell=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libonce_cell-f9b984852945e4ac.rmeta --extern petgraph=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libpetgraph-11faea72e600ec28.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 298s warning: `nix` (lib) generated 1 warning (1 duplicate) 298s Compiling os_pipe v1.2.1 298s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/os_pipe-1.2.1 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/os_pipe-1.2.1/Cargo.toml CARGO_PKG_AUTHORS='Jack O'\''Connor' CARGO_PKG_DESCRIPTION='a cross-platform library for opening OS pipes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=os_pipe CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.2.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name os_pipe --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/os_pipe-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="io_safety"' --check-cfg 'cfg(docsrs)' --check-cfg 'cfg(feature, values("io_safety"))' -C metadata=3c879989e1f7b2c1 -C extra-filename=-3c879989e1f7b2c1 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=s390x-linux-gnu-gcc -C link-arg=-Wl,-Bsymbolic-functions -C link-arg=-flto=auto -C link-arg=-ffat-lto-objects -C link-arg=-Wl,-z,relro --remap-path-prefix /usr/share/cargo/registry/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 298s warning: `os_pipe` (lib) generated 1 warning (1 duplicate) 298s Compiling log v0.4.22 298s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/tmp/tmp.2RIEl7KkVf/registry/log-0.4.22 CARGO_MANIFEST_PATH=/tmp/tmp.2RIEl7KkVf/registry/log-0.4.22/Cargo.toml CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust 298s ' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_RUST_VERSION=1.60.0 CARGO_PKG_VERSION=0.4.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name log --edition=2021 /tmp/tmp.2RIEl7KkVf/registry/log-0.4.22/src/lib.rs --error-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("kv", "kv_serde", "kv_std", "kv_sval", "kv_unstable", "kv_unstable_serde", "kv_unstable_std", "kv_unstable_sval", "max_level_debug", "max_level_error", "max_level_info", "max_level_off", "max_level_trace", "max_level_warn", "release_max_level_debug", "release_max_level_error", "release_max_level_info", "release_max_level_off", "release_max_level_trace", "release_max_level_warn", "serde", "std", "sval", "sval_ref", "value-bag"))' -C metadata=3b24e9f654e1ff15 -C extra-filename=-3b24e9f654e1ff15 --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 298s warning: `log` (lib) generated 1 warning (1 duplicate) 299s warning: `tree_magic_mini` (lib) generated 1 warning (1 duplicate) 299s Compiling wl-clipboard-rs v0.8.0 (/usr/share/cargo/registry/wl-clipboard-rs-0.8.0) 299s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_CRATE_NAME=wl_clipboard_rs CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/tmp/tmp.2RIEl7KkVf/target/debug/deps rustc --crate-name wl_clipboard_rs --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("dlopen", "native_lib"))' -C metadata=d96c6d28dc3dbd3b -C extra-filename=-d96c6d28dc3dbd3b --out-dir /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps --target s390x-unknown-linux-gnu -C incremental=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/incremental -L dependency=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps -L dependency=/tmp/tmp.2RIEl7KkVf/target/debug/deps --extern derive_new=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libderive_new-d36da1d6c0ebb951.so --extern libc=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblibc-cf2521928ac070dc.rlib --extern log=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/liblog-3b24e9f654e1ff15.rlib --extern nix=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libnix-0930f78ed5a2e234.rlib --extern os_pipe=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libos_pipe-3c879989e1f7b2c1.rlib --extern proptest=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libproptest-4bfa1843376ba424.rlib --extern proptest_derive=/tmp/tmp.2RIEl7KkVf/target/debug/deps/libproptest_derive-6474c4970bc8d659.so --extern tempfile=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libtempfile-7264ab473cee172b.rlib --extern thiserror=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libthiserror-5cbb283d943c993e.rlib --extern tree_magic_mini=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libtree_magic_mini-242d3fc89e043ebe.rlib --extern wayland_backend=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_backend-64ae102d56f82b13.rlib --extern wayland_client=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_client-27bc269d25896513.rlib --extern wayland_protocols=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols-bc287ed77051523c.rlib --extern wayland_protocols_wlr=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_protocols_wlr-98900a7b8b7a3e83.rlib --extern wayland_server=/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/libwayland_server-234e84df41e54b81.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/wl-clipboard-rs-0.8.0=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 --remap-path-prefix /tmp/tmp.2RIEl7KkVf/registry=/usr/share/cargo/registry -Ctarget-feature=+backchain` 299s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 299s --> src/tests/mod.rs:9:5 299s | 299s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 299s | ^^^^^^^^^^^^^ 299s | 299s = note: `#[warn(deprecated)]` on by default 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 299s --> src/tests/mod.rs:9:20 299s | 299s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 299s | ^^^^^^^^^ 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 299s --> src/tests/mod.rs:9:31 299s | 299s 9 | epoll_create1, epoll_ctl, epoll_wait, EpollCreateFlags, EpollEvent, EpollFlags, EpollOp, 299s | ^^^^^^^^^^ 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_create1`: Use Epoll::new() instead 299s --> src/tests/mod.rs:43:23 299s | 299s 43 | let poll_fd = epoll_create1(EpollCreateFlags::EPOLL_CLOEXEC).unwrap(); 299s | ^^^^^^^^^^^^^ 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 299s --> src/tests/mod.rs:47:9 299s | 299s 47 | epoll_ctl( 299s | ^^^^^^^^^ 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_ctl`: Use Epoll::epoll_ctl() instead 299s --> src/tests/mod.rs:55:9 299s | 299s 55 | epoll_ctl( 299s | ^^^^^^^^^ 299s 299s warning: use of deprecated function `nix::sys::epoll::epoll_wait`: Use Epoll::wait() instead 299s --> src/tests/mod.rs:92:27 299s | 299s 92 | let nevents = epoll_wait(self.poll_fd.as_raw_fd(), &mut events, -1).unwrap(); 299s | ^^^^^^^^^^ 299s 299s warning: this function depends on never type fallback being `()` 299s --> src/copy.rs:554:5 299s | 299s 554 | pub fn serve(mut self) -> Result<(), Error> { 299s | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ 299s | 299s = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in Rust 2024 and in a future release in all editions! 299s = note: for more information, see issue #123748 299s = help: specify the types explicitly 299s note: in edition 2024, the requirement `!: FromIterator<()>` will fail 299s --> src/copy.rs:591:36 299s | 299s 591 | let result: Result<_, _> = results.into_iter().collect(); 299s | ^^^^^^^^^^^^^^^^^^^ 299s = note: `#[warn(dependency_on_unit_never_type_fallback)]` on by default 299s help: use `()` annotations to avoid fallback changes 299s | 299s 591 | let result: Result<(), _> = results.into_iter().collect(); 299s | ~~ 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/tests/state.rs:37:24 299s | 299s 37 | #[derive(Debug, Clone, Arbitrary)] 299s | ^-------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_OfferInfo` 299s 38 | pub enum OfferInfo { 299s | --------- `OfferInfo` is not local 299s | 299s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: `#[warn(non_local_definitions)]` on by default 299s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/tests/state.rs:73:33 299s | 299s 73 | #[derive(Debug, Clone, Default, Arbitrary)] 299s | ^-------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_SeatInfo` 299s 74 | pub struct SeatInfo { 299s | -------- `SeatInfo` is not local 299s | 299s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/tests/state.rs:79:33 299s | 299s 79 | #[derive(Debug, Clone, Default, Arbitrary)] 299s | ^-------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_State` 299s 80 | pub struct State { 299s | ----- `State` is not local 299s | 299s = note: the derive macro `Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/copy.rs:36:25 299s | 299s 36 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 299s | ^------------------------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 299s 37 | pub enum ClipboardType { 299s | ------------- `ClipboardType` is not local 299s | 299s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/copy.rs:55:25 299s | 299s 55 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 299s | ^------------------------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_MimeType` 299s 56 | pub enum MimeType { 299s | -------- `MimeType` is not local 299s | 299s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/copy.rs:68:25 299s | 299s 68 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 299s | ^------------------------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_Source` 299s 69 | pub enum Source { 299s | ------ `Source` is not local 299s | 299s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 299s warning: non-local `impl` definition, `impl` blocks should be written at the same level as their item 299s --> src/paste.rs:28:25 299s | 299s 28 | #[cfg_attr(test, derive(proptest_derive::Arbitrary))] 299s | ^------------------------- 299s | | 299s | `Arbitrary` is not local 299s | move the `impl` block outside of this constant `_IMPL_ARBITRARY_FOR_ClipboardType` 299s 29 | pub enum ClipboardType { 299s | ------------- `ClipboardType` is not local 299s | 299s = note: the derive macro `proptest_derive::Arbitrary` defines the non-local `impl`, and may need to be changed 299s = note: the derive macro `proptest_derive::Arbitrary` may come from an old version of the `proptest_derive` crate, try updating your dependency with `cargo update -p proptest_derive` 299s = note: an `impl` is never scoped, even when it is nested inside an item, as it may impact type checking outside of that item, which can be the case if neither the trait or the self type are at the same nesting level as the `impl` 299s = note: items in an anonymous const item (`const _: () = { ... }`) are treated as in the same scope as the anonymous const's declaration for the purpose of this lint 299s = note: this warning originates in the derive macro `proptest_derive::Arbitrary` (in Nightly builds, run with -Z macro-backtrace for more info) 299s 303s warning: `wl-clipboard-rs` (lib test) generated 16 warnings (1 duplicate) (run `cargo fix --lib -p wl-clipboard-rs --tests` to apply 1 suggestion) 303s Finished `test` profile [unoptimized + debuginfo] target(s) in 33.82s 303s Running `CARGO=/usr/lib/rust-1.84/bin/cargo CARGO_MANIFEST_DIR=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0 CARGO_MANIFEST_PATH=/usr/share/cargo/registry/wl-clipboard-rs-0.8.0/Cargo.toml CARGO_PKG_AUTHORS='Ivan Molodetskikh ' CARGO_PKG_DESCRIPTION='Access to the Wayland clipboard for terminal and other window-less applications.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=wl-clipboard-rs CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/YaLTeR/wl-clipboard-rs' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.8.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps:/tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug:/usr/lib/rust-1.84/lib/rustlib/s390x-unknown-linux-gnu/lib' /tmp/tmp.2RIEl7KkVf/target/s390x-unknown-linux-gnu/debug/deps/wl_clipboard_rs-d96c6d28dc3dbd3b` 303s 303s running 23 tests 303s test tests::copy::clear_test ... ok 303s test tests::copy::copy_large ... ok 303s test tests::copy::copy_multi_no_additional_text_mime_types_test ... ok 303s test tests::copy::copy_multi_test ... ok 303s test tests::copy::copy_test ... ok 303s test tests::paste::get_contents_randomized ... ok 303s test tests::paste::get_contents_test ... ok 303s test tests::paste::get_contents_wrong_mime_type ... ok 303s test tests::paste::get_mime_types_empty_clipboard ... ok 303s test tests::paste::get_mime_types_no_data_control ... ok 303s test tests::paste::get_mime_types_no_data_control_2 ... ok 303s test tests::paste::get_mime_types_no_seats ... ok 303s test tests::paste::get_mime_types_primary ... ok 304s test tests::paste::get_mime_types_randomized ... ok 304s test tests::paste::get_mime_types_specific_seat ... ok 304s test tests::paste::get_mime_types_test ... ok 304s test tests::utils::is_primary_selection_supported_data_control_v1 ... ok 304s test tests::utils::is_primary_selection_supported_no_data_control ... ok 304s test tests::utils::is_primary_selection_supported_no_seats ... ok 304s test tests::utils::is_primary_selection_supported_primary_selection_unsupported ... ok 304s test tests::utils::is_primary_selection_supported_test ... ok 304s test tests::utils::supports_v2_seats ... ok 304s test tests::copy::copy_randomized ... ok 304s 304s test result: ok. 23 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 1.60s 304s 304s /tmp/autopkgtest.4cJX46/wrapper.sh: checking for leaked background processes... 304s /tmp/autopkgtest.4cJX46/wrapper.sh: waiting for tee/cat subprocesses... 304s /tmp/autopkgtest.4cJX46/wrapper.sh: cleaning up... 304s /tmp/autopkgtest.4cJX46/wrapper.sh: Exit status: 0 304s autopkgtest: DBG: testbed command exited with code 0 305s autopkgtest [07:36:33]: test librust-wl-clipboard-rs-dev:: -----------------------] 305s autopkgtest: DBG: testbed executing test finished with exit status 0 305s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3A-stdout /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3A-stdout 305s autopkgtest: DBG: got reply from testbed: ok 305s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3A-stderr /tmp/autopkgtest-work.oh9g3vy4/out/librust-wl-clipboard-rs-dev%3A-stderr 305s autopkgtest: DBG: got reply from testbed: ok 306s librust-wl-clipboard-rs-dev: PASS 306s autopkgtest [07:36:34]: test librust-wl-clipboard-rs-dev:: - - - - - - - - - - results - - - - - - - - - - 306s autopkgtest: DBG: sending command to testbed: copyup /tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev%3A-artifacts/ /tmp/autopkgtest-work.oh9g3vy4/out/artifacts/ 306s autopkgtest: DBG: got reply from testbed: ok 306s autopkgtest: DBG: testbed command ['rm', '-rf', '/tmp/autopkgtest.4cJX46/librust-wl-clipboard-rs-dev:-artifacts', '/tmp/autopkgtest.4cJX46/autopkgtest_tmp'], kind short, sout raw, serr pipe, env [] 306s autopkgtest: DBG: testbed command exited with code 0 306s autopkgtest: DBG: needs_reset, previously=False, requested by run_tests() line 230 306s autopkgtest [07:36:34]: @@@@@@@@@@@@@@@@@@@@ summary 306s rust-wl-clipboard-rs:@ PASS 306s librust-wl-clipboard-rs-dev:default PASS 306s librust-wl-clipboard-rs-dev:dlopen PASS 306s librust-wl-clipboard-rs-dev:native_lib PASS 306s librust-wl-clipboard-rs-dev: PASS 306s autopkgtest: DBG: testbed stop 306s autopkgtest: DBG: testbed close, scratch=/tmp/autopkgtest.4cJX46 306s autopkgtest: DBG: sending command to testbed: close 323s autopkgtest: DBG: got reply from testbed: ok 323s autopkgtest: DBG: sending command to testbed: quit 323s nova [W] Using flock in prodstack6-s390x 323s Creating nova instance adt-plucky-s390x-rust-wl-clipboard-rs-20250210-073128-juju-7f2275-prod-proposed-migration-environment-15-46ebc846-bcf7-4b1c-93ae-3deeaa0576b7 from image adt/ubuntu-plucky-s390x-server-20250210.img (UUID 9df4a1a3-165e-45c8-90e9-262841cdf4ea)... 323s nova [W] Timed out waiting for 4e420308-ff44-44fd-89ee-9599a6a61794 to get deleted.