[Pkg-rust-maintainers] Bug#1100348: rust-async-std-resolver: FTBFS: error[E0053]: method `new_connection` has an incompatible type for trait
Santiago Vila
sanvila at debian.org
Wed Mar 12 21:04:37 GMT 2025
Package: src:rust-async-std-resolver
Version: 0.24.0-1
Severity: serious
Tags: ftbfs trixie sid
Dear maintainer:
During a rebuild of all packages in unstable, your package failed to build:
--------------------------------------------------------------------------------
[...]
debian/rules clean
dh clean --buildsystem cargo
dh_auto_clean -O--buildsystem=cargo
debian cargo wrapper: options = ['parallel=1'], profiles = [], parallel = ['-j1'], lto =
debian cargo wrapper: rust_type = x86_64-unknown-linux-gnu, gnu_type = x86_64-linux-gnu
debian cargo wrapper: running subprocess (['env', 'RUST_BACKTRACE=1', '/usr/bin/cargo', 'clean', '--verbose', '--verbose'],) {'check': True}
Removed 0 files
dh_autoreconf_clean -O--buildsystem=cargo
dh_clean -O--buildsystem=cargo
debian/rules binary
dh binary --buildsystem cargo
dh_update_autotools_config -O--buildsystem=cargo
dh_autoreconf -O--buildsystem=cargo
dh_auto_configure -O--buildsystem=cargo
[... snipped ...]
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/index.rs:276:12
|
276 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition name: `doc_cfg`
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:114:16
|
114 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition name: `doc_cfg`
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:142:16
|
142 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition name: `doc_cfg`
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:170:16
|
170 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition name: `doc_cfg`
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:219:16
|
219 | #[cfg_attr(doc_cfg, doc(cfg(feature = "std")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition name: `doc_cfg`
--> /usr/share/cargo/registry/rand-0.8.5/src/seq/mod.rs:465:16
|
465 | #[cfg_attr(doc_cfg, doc(cfg(feature = "alloc")))]
| ^^^^^^^
|
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_cfg)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(doc_cfg)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: trait `Float` is never used
--> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:238:18
|
238 | pub(crate) trait Float: Sized {
| ^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: associated items `lanes`, `extract`, and `replace` are never used
--> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:247:8
|
245 | pub(crate) trait FloatAsSIMD: Sized {
| ----------- associated items in this trait
246 | #[inline(always)]
247 | fn lanes() -> usize {
| ^^^^^
...
255 | fn extract(self, index: usize) -> Self {
| ^^^^^^^
...
260 | fn replace(self, index: usize, new_value: Self) -> Self {
| ^^^^^^^
warning: method `all` is never used
--> /usr/share/cargo/registry/rand-0.8.5/src/distributions/utils.rs:268:8
|
266 | pub(crate) trait BoolAsSIMD: Sized {
| ---------- method in this trait
267 | fn any(self) -> bool;
268 | fn all(self) -> bool;
| ^^^
warning: `rand` (lib) generated 69 warnings
Compiling url v2.5.2
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=url CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/url-2.5.2 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/url-2.5.2/Cargo.toml CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='URL library for Rust, based on the WHATWG URL Standard' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=url CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=2.5.2 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name url --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/url-2.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 --cfg 'feature="default"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "expose_internals", "serde"))' -C metadata=3a3609a253be34aa -C extra-filename=-9ddfc528cae55bc0 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern form_urlencoded=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libform_urlencoded-64507a39f8797893.rmeta --extern idna=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libidna-142485034795c015.rmeta --extern percent_encoding=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libpercent_encoding-5dabea4814cc4428.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `debugger_visualizer`
--> /usr/share/cargo/registry/url-2.5.2/src/lib.rs:139:5
|
139 | feature = "debugger_visualizer",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `default`, `expose_internals`, and `serde`
= help: consider adding `debugger_visualizer` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
warning: `url` (lib) generated 1 warning
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=parking_lot_core CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot_core-0.9.10 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot_core-0.9.10/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras <amanieu at gmail.com>' CARGO_PKG_DESCRIPTION='An advanced API for creating custom synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot_core CARGO_PKG_README='' CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56.0 CARGO_PKG_VERSION=0.9.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps OUT_DIR=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/build/parking_lot_core-5a26dcbf394de84f/out rustc --crate-name parking_lot_core --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot_core-0.9.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("nightly"))' -C metadata=bf3eb60696147b9c -C extra-filename=-120b14c164d340b0 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern cfg_if=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcfg_if-6156ce0c81f34d8b.rmeta --extern libc=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblibc-4b4b2b1ce84fad0d.rmeta --extern smallvec=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libsmallvec-3c958bf4014db2ab.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1148:7
|
1148 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:171:11
|
171 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:189:19
|
189 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1099:11
|
1099 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1102:11
|
1102 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1135:11
|
1135 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1113:15
|
1113 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1129:15
|
1129 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/parking_lot.rs:1143:15
|
1143 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `nightly`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unused import: `UnparkHandle`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/thread_parker/mod.rs:85:49
|
85 | pub use self::imp::{thread_yield, ThreadParker, UnparkHandle};
| ^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: unexpected `cfg` condition name: `tsan_enabled`
--> /usr/share/cargo/registry/parking_lot_core-0.9.10/src/word_lock.rs:293:13
|
293 | if cfg!(tsan_enabled) {
| ^^^^^^^^^^^^
|
= 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`
= help: consider using a Cargo feature instead
= help: or consider adding in `Cargo.toml` the `check-cfg` lint config for the lint:
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tsan_enabled)'] }
= help: or consider adding `println!("cargo::rustc-check-cfg=cfg(tsan_enabled)");` to the top of the `build.rs`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: `parking_lot_core` (lib) generated 11 warnings
Compiling async-executor v1.13.1
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_executor CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/async-executor-1.13.1 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/async-executor-1.13.1/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina <stjepang at gmail.com>:John Nunley <dev at notgull.net>' CARGO_PKG_DESCRIPTION='Async executor' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-executor' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=1.13.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_executor --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/async-executor-1.13.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("static"))' -C metadata=59dbc8beda952d7e -C extra-filename=-fbbc74c9c62530e2 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_task=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_task-f74d0378801d2ba1.rmeta --extern concurrent_queue=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libconcurrent_queue-5cac7fd20d2e0515.rmeta --extern fastrand=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfastrand-71a5e50b25e5faa9.rmeta --extern futures_lite=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_lite-c529950af307c7ec.rmeta --extern slab=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libslab-e0545b4a2c0720f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling futures-channel v0.3.31
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/futures-channel-0.3.31 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/futures-channel-0.3.31/Cargo.toml CARGO_PKG_AUTHORS='' CARGO_PKG_DESCRIPTION='Channels for asynchronous communication using futures-rs.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-channel CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.3.31 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=31 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name futures_channel --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/futures-channel-0.3.31/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unreachable_pub --warn=unexpected_cfgs --warn=single_use_lifetimes --warn=rust_2018_idioms --warn=missing_debug_implementations --check-cfg 'cfg(futures_sanitizer)' --cfg 'feature="alloc"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "cfg-target-has-atomic", "default", "futures-sink", "sink", "std", "unstable"))' -C metadata=87be0a3c33c5eaf1 -C extra-filename=-04e067aa36b216f0 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern futures_core=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_core-2fef3c5cbc0ffc3a.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling async-trait v0.1.83
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_trait CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/async-trait-0.1.83 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/async-trait-0.1.83/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay <dtolnay at gmail.com>' CARGO_PKG_DESCRIPTION='Type erasure for async trait methods' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-trait CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/dtolnay/async-trait' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.1.83 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=83 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_trait --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/async-trait-0.1.83/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values())' -C metadata=c20cce5c934c0160 -C extra-filename=-c1bcf4c4eb980897 --out-dir /<<PKGBUILDDIR>>/target/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern proc_macro2=/<<PKGBUILDDIR>>/target/debug/deps/libproc_macro2-3101b0ad76b98c0c.rlib --extern quote=/<<PKGBUILDDIR>>/target/debug/deps/libquote-3d128417f373fb73.rlib --extern syn=/<<PKGBUILDDIR>>/target/debug/deps/libsyn-5665af1fc3fc6b11.rlib --extern proc_macro --cap-lints warn`
Compiling thiserror-impl v1.0.69
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/thiserror-impl-1.0.69 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/thiserror-impl-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay <dtolnay at gmail.com>' 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=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name thiserror_impl --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_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,test)' --check-cfg 'cfg(feature, values())' -C metadata=865aff7362bbb4df -C extra-filename=-27cd3ff1b310aea0 --out-dir /<<PKGBUILDDIR>>/target/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern proc_macro2=/<<PKGBUILDDIR>>/target/debug/deps/libproc_macro2-3101b0ad76b98c0c.rlib --extern quote=/<<PKGBUILDDIR>>/target/debug/deps/libquote-3d128417f373fb73.rlib --extern syn=/<<PKGBUILDDIR>>/target/debug/deps/libsyn-5665af1fc3fc6b11.rlib --extern proc_macro --cap-lints warn`
Compiling ipnet v2.11.0
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=ipnet CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/ipnet-2.11.0 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/ipnet-2.11.0/Cargo.toml CARGO_PKG_AUTHORS='Kris Price <kris at krisprice.nz>' CARGO_PKG_DESCRIPTION='Provides types and useful methods for working with IPv4 and IPv6 network addresses, commonly called IP prefixes. The new `IpNet`, `Ipv4Net`, and `Ipv6Net` types build on the existing `IpAddr`, `Ipv4Addr`, and `Ipv6Addr` types already provided in Rust'\''s standard library and align to their design to stay consistent. The module also provides useful traits that extend `Ipv4Addr` and `Ipv6Addr` with methods for `Add`, `Sub`, `BitAnd`, and `BitOr` operations. The module only uses stable feature so it is guaranteed to compile using the stable toolchain.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ipnet CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/krisprice/ipnet' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=2.11.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name ipnet --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/ipnet-2.11.0/src/lib.rs --error-format=json --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,test)' --check-cfg 'cfg(feature, values("default", "heapless", "ser_as_str", "serde", "std"))' -C metadata=eae14281e83023b3 -C extra-filename=-320625bd1cf96938 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `schemars`
--> /usr/share/cargo/registry/ipnet-2.11.0/src/lib.rs:91:7
|
91 | #[cfg(feature = "schemars")]
| ^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `default`, `heapless`, `ser_as_str`, `serde`, and `std`
= help: consider adding `schemars` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value: `schemars`
--> /usr/share/cargo/registry/ipnet-2.11.0/src/lib.rs:105:7
|
105 | #[cfg(feature = "schemars")]
| ^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `default`, `heapless`, `ser_as_str`, `serde`, and `std`
= help: consider adding `schemars` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: `ipnet` (lib) generated 2 warnings
Compiling linked-hash-map v0.5.6
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=linked_hash_map CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/linked-hash-map-0.5.6 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/linked-hash-map-0.5.6/Cargo.toml CARGO_PKG_AUTHORS='Stepan Koltsov <stepan.koltsov at gmail.com>:Andrew Paseltiner <apaseltiner at gmail.com>' CARGO_PKG_DESCRIPTION='A HashMap wrapper that holds key-value pairs in insertion order' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/linked-hash-map' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=linked-hash-map CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/linked-hash-map' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.5.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name linked_hash_map --edition=2015 /<<PKGBUILDDIR>>/debian/cargo_registry/linked-hash-map-0.5.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,test)' --check-cfg 'cfg(feature, values("heapsize", "heapsize_impl", "nightly", "serde", "serde_impl"))' -C metadata=1625dfddc61e335b -C extra-filename=-51931535964af9fc --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unused return value of `Box::<T>::from_raw` that must be used
--> /usr/share/cargo/registry/linked-hash-map-0.5.6/src/lib.rs:165:13
|
165 | Box::from_raw(cur);
| ^^^^^^^^^^^^^^^^^^
|
= note: call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`
= note: `#[warn(unused_must_use)]` on by default
help: use `let _ = ...` to ignore the resulting value
|
165 | let _ = Box::from_raw(cur);
| +++++++
warning: unused return value of `Box::<T>::from_raw` that must be used
--> /usr/share/cargo/registry/linked-hash-map-0.5.6/src/lib.rs:1300:17
|
1300 | Box::from_raw(self.tail);
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: call `drop(Box::from_raw(ptr))` if you intend to drop the `Box`
help: use `let _ = ...` to ignore the resulting value
|
1300 | let _ = Box::from_raw(self.tail);
| +++++++
warning: `linked-hash-map` (lib) generated 2 warnings
Compiling data-encoding v2.6.0
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=data_encoding CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/data-encoding-2.6.0 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/data-encoding-2.6.0/Cargo.toml CARGO_PKG_AUTHORS='Julien Cretin <git at ia0.eu>' CARGO_PKG_DESCRIPTION='Efficient and customizable data-encoding functions like base64, base32, and hex' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=data-encoding CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/ia0/data-encoding' CARGO_PKG_RUST_VERSION=1.48 CARGO_PKG_VERSION=2.6.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name data_encoding --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/data-encoding-2.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="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "default", "std"))' -C metadata=4c84f4949f954d0c -C extra-filename=-284ecc3b8c573d4c --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling quick-error v2.0.1
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/quick-error-2.0.1 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/quick-error-2.0.1/Cargo.toml CARGO_PKG_AUTHORS='Paul Colomiets <paul at colomiets.name>:Colin Kiegel <kiegel at gmx.de>' CARGO_PKG_DESCRIPTION=' A macro which makes error types pleasant to write.
' 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=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name quick_error --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_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,test)' --check-cfg 'cfg(feature, values())' -C metadata=6066d71f350b8069 -C extra-filename=-32ff53d825b61592 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling resolv-conf v0.7.0
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=resolv_conf CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/resolv-conf-0.7.0 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/resolv-conf-0.7.0/Cargo.toml CARGO_PKG_AUTHORS='paul at colomiets.name' CARGO_PKG_DESCRIPTION=' The resolv.conf file parser
' CARGO_PKG_HOMEPAGE='http://github.com/tailhook/resolv-conf' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=resolv-conf CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='http://github.com/tailhook/resolv-conf' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.7.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name resolv_conf --edition=2015 /<<PKGBUILDDIR>>/debian/cargo_registry/resolv-conf-0.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 --cfg 'feature="hostname"' --cfg 'feature="system"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("hostname", "system"))' -C metadata=7edd543c57db35e0 -C extra-filename=-f5784f97a2033949 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern hostname=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libhostname-6f758fd0b66d1078.rmeta --extern quick_error=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libquick_error-32ff53d825b61592.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling hickory-proto v0.24.3
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=hickory_proto CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/hickory-proto-0.24.3 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/hickory-proto-0.24.3/Cargo.toml CARGO_PKG_AUTHORS='The contributors to Hickory DNS' CARGO_PKG_DESCRIPTION='Hickory DNS is a safe and secure DNS library. This is the foundational DNS protocol library for all Hickory DNS projects.
' CARGO_PKG_HOMEPAGE='https://hickory-dns.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hickory-proto CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/hickory-dns/hickory-dns' CARGO_PKG_RUST_VERSION=1.71.1 CARGO_PKG_VERSION=0.24.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=24 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name hickory_proto --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/hickory-proto-0.24.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(nightly)' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("backtrace", "bytes", "default", "dns-over-h3", "dns-over-https", "dns-over-https-rustls", "dns-over-native-tls", "dns-over-openssl", "dns-over-quic", "dns-over-rustls", "dns-over-tls", "dnssec", "dnssec-openssl", "dnssec-ring", "h2", "h3", "h3-quinn", "http", "js-sys", "mdns", "native-certs", "native-tls", "openssl", "quinn", "ring", "rustls", "rustls-pemfile", "serde", "serde-config", "socket2", "testing", "text-parsing", "tokio", "tokio-native-tls", "tokio-openssl", "tokio-runtime", "tokio-rustls", "wasm-bindgen", "wasm-bindgen-crate"))' -C metadata=f15a97f05680dca4 -C extra-filename=-145960d75f03b79c --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_trait=/<<PKGBUILDDIR>>/target/debug/deps/libasync_trait-c1bcf4c4eb980897.so --extern cfg_if=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcfg_if-6156ce0c81f34d8b.rmeta --extern data_encoding=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libdata_encoding-284ecc3b8c573d4c.rmeta --extern enum_as_inner=/<<PKGBUILDDIR>>/target/debug/deps/libenum_as_inner-00709302c891ebdc.so --extern futures_channel=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_channel-04e067aa36b216f0.rmeta --extern futures_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_io-8671a88e637f3787.rmeta --extern futures_util=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_util-a59b257d20a1bfb0.rmeta --extern idna=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libidna-142485034795c015.rmeta --extern ipnet=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libipnet-320625bd1cf96938.rmeta --extern once_cell=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libonce_cell-05bef0c44f9032ea.rmeta --extern rand=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/librand-356708443434dd1c.rmeta --extern thiserror=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libthiserror-db6bdf66990c0b52.rmeta --extern tinyvec=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtinyvec-329ea0f34cc9cc20.rmeta --extern tracing=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtracing-a9c7e12f77a30604.rmeta --extern url=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liburl-9ddfc528cae55bc0.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `webpki-roots`
--> /usr/share/cargo/registry/hickory-proto-0.24.3/src/error.rs:310:45
|
310 | #[cfg(all(feature = "native-certs", not(feature = "webpki-roots")))]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `backtrace`, `bytes`, `default`, `dns-over-h3`, `dns-over-https`, `dns-over-https-rustls`, `dns-over-native-tls`, `dns-over-openssl`, `dns-over-quic`, `dns-over-rustls`, `dns-over-tls`, `dnssec`, `dnssec-openssl`, `dnssec-ring`, `h2`, `h3`, `h3-quinn`, `http`, `js-sys`, `mdns`, `native-certs`, `native-tls`, `openssl`, `quinn`, `ring`, `rustls`, `rustls-pemfile`, `serde`, `serde-config`, `socket2`, `testing`, `text-parsing`, `tokio`, `tokio-native-tls`, and `tokio-openssl` and 4 more
= help: consider adding `webpki-roots` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: requested on the command line with `-W unexpected-cfgs`
warning: unexpected `cfg` condition value: `webpki-roots`
--> /usr/share/cargo/registry/hickory-proto-0.24.3/src/error.rs:521:53
|
521 | #[cfg(all(feature = "native-certs", not(feature = "webpki-roots")))]
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `backtrace`, `bytes`, `default`, `dns-over-h3`, `dns-over-https`, `dns-over-https-rustls`, `dns-over-native-tls`, `dns-over-openssl`, `dns-over-quic`, `dns-over-rustls`, `dns-over-tls`, `dnssec`, `dnssec-openssl`, `dnssec-ring`, `h2`, `h3`, `h3-quinn`, `http`, `js-sys`, `mdns`, `native-certs`, `native-tls`, `openssl`, `quinn`, `ring`, `rustls`, `rustls-pemfile`, `serde`, `serde-config`, `socket2`, `testing`, `text-parsing`, `tokio`, `tokio-native-tls`, and `tokio-openssl` and 4 more
= help: consider adding `webpki-roots` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: `hickory-proto` (lib) generated 2 warnings
Compiling lru-cache v0.1.2
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=lru_cache CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/lru-cache-0.1.2 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/lru-cache-0.1.2/Cargo.toml CARGO_PKG_AUTHORS='Stepan Koltsov <stepan.koltsov at gmail.com>' CARGO_PKG_DESCRIPTION='A cache that holds a limited number of key-value pairs' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/lru-cache' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lru-cache CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/contain-rs/lru-cache' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=0.1.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name lru_cache --edition=2015 /<<PKGBUILDDIR>>/debian/cargo_registry/lru-cache-0.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("heapsize", "heapsize_impl"))' -C metadata=488297f8c4da3d46 -C extra-filename=-b0675636e7b70611 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern linked_hash_map=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblinked_hash_map-51931535964af9fc.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/thiserror-1.0.69 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/thiserror-1.0.69/Cargo.toml CARGO_PKG_AUTHORS='David Tolnay <dtolnay at gmail.com>' 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=/<<PKGBUILDDIR>>/target/debug/deps OUT_DIR=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/build/thiserror-d41ef6361cffb2c2/out rustc --crate-name thiserror --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_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,test)' --check-cfg 'cfg(feature, values())' -C metadata=bfeaf9e947c2b79c -C extra-filename=-2327ca3a78569624 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern thiserror_impl=/<<PKGBUILDDIR>>/target/debug/deps/libthiserror_impl-27cd3ff1b310aea0.so --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry --check-cfg 'cfg(error_generic_member_access)' --check-cfg 'cfg(thiserror_nightly_testing)'`
Compiling async-global-executor v2.4.1
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_global_executor CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/async-global-executor-2.4.1 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/async-global-executor-2.4.1/Cargo.toml CARGO_PKG_AUTHORS='Marc-Antoine Perennou <Marc-Antoine at Perennou.com>' CARGO_PKG_DESCRIPTION='A global executor built on top of async-executor and async-io' CARGO_PKG_HOMEPAGE='https://github.com/Keruspe/async-global-executor' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-global-executor CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Keruspe/async-global-executor' CARGO_PKG_RUST_VERSION=1.60 CARGO_PKG_VERSION=2.4.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_global_executor --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/async-global-executor-2.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="async-io"' --cfg 'feature="default"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("async-io", "default", "tokio", "tokio-crate"))' -C metadata=8afd9da3514fb84d -C extra-filename=-7d6833374cce2f5f --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_channel=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_channel-f18226281a785e91.rmeta --extern async_executor=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_executor-fbbc74c9c62530e2.rmeta --extern async_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_io-8cbdc47668570ffd.rmeta --extern async_lock=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_lock-0683a2527a530901.rmeta --extern blocking=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libblocking-9244d4a476057be4.rmeta --extern futures_lite=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_lite-c529950af307c7ec.rmeta --extern once_cell=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libonce_cell-05bef0c44f9032ea.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `tokio02`
--> /usr/share/cargo/registry/async-global-executor-2.4.1/src/lib.rs:48:7
|
48 | #[cfg(feature = "tokio02")]
| ^^^^^^^^^^---------
| |
| help: there is a expected value with a similar name: `"tokio"`
|
= note: expected values for `feature` are: `async-io`, `default`, `tokio`, and `tokio-crate`
= help: consider adding `tokio02` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value: `tokio03`
--> /usr/share/cargo/registry/async-global-executor-2.4.1/src/lib.rs:50:7
|
50 | #[cfg(feature = "tokio03")]
| ^^^^^^^^^^---------
| |
| help: there is a expected value with a similar name: `"tokio"`
|
= note: expected values for `feature` are: `async-io`, `default`, `tokio`, and `tokio-crate`
= help: consider adding `tokio03` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `tokio02`
--> /usr/share/cargo/registry/async-global-executor-2.4.1/src/reactor.rs:8:11
|
8 | #[cfg(feature = "tokio02")]
| ^^^^^^^^^^---------
| |
| help: there is a expected value with a similar name: `"tokio"`
|
= note: expected values for `feature` are: `async-io`, `default`, `tokio`, and `tokio-crate`
= help: consider adding `tokio02` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `tokio03`
--> /usr/share/cargo/registry/async-global-executor-2.4.1/src/reactor.rs:10:11
|
10 | #[cfg(feature = "tokio03")]
| ^^^^^^^^^^---------
| |
| help: there is a expected value with a similar name: `"tokio"`
|
= note: expected values for `feature` are: `async-io`, `default`, `tokio`, and `tokio-crate`
= help: consider adding `tokio03` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: `async-global-executor` (lib) generated 4 warnings
Compiling parking_lot v0.12.3
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=parking_lot CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot-0.12.3 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot-0.12.3/Cargo.toml CARGO_PKG_AUTHORS='Amanieu d'\''Antras <amanieu at gmail.com>' CARGO_PKG_DESCRIPTION='More compact and efficient implementations of the standard synchronization primitives.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=parking_lot CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/Amanieu/parking_lot' CARGO_PKG_RUST_VERSION=1.56 CARGO_PKG_VERSION=0.12.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name parking_lot --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/parking_lot-0.12.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,test)' --check-cfg 'cfg(feature, values("arc_lock", "default", "hardware-lock-elision", "nightly", "owning_ref", "send_guard", "serde"))' -C metadata=88e7a3e4268d210d -C extra-filename=-81bf8c77ad2dd1b5 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern lock_api=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblock_api-604210d6f1fa201f.rmeta --extern parking_lot_core=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libparking_lot_core-120b14c164d340b0.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot-0.12.3/src/lib.rs:27:7
|
27 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot-0.12.3/src/lib.rs:29:11
|
29 | #[cfg(not(feature = "deadlock_detection"))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot-0.12.3/src/lib.rs:34:35
|
34 | #[cfg(all(feature = "send_guard", feature = "deadlock_detection"))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: unexpected `cfg` condition value: `deadlock_detection`
--> /usr/share/cargo/registry/parking_lot-0.12.3/src/deadlock.rs:36:7
|
36 | #[cfg(feature = "deadlock_detection")]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: expected values for `feature` are: `arc_lock`, `default`, `hardware-lock-elision`, `nightly`, `owning_ref`, `send_guard`, and `serde`
= help: consider adding `deadlock_detection` as a feature in `Cargo.toml`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg/cargo-specifics.html> for more information about checking conditional configuration
warning: `parking_lot` (lib) generated 4 warnings
Compiling async-process v2.3.0
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_process CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/async-process-2.3.0 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/async-process-2.3.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina <stjepang at gmail.com>' CARGO_PKG_DESCRIPTION='Async interface for working with processes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-process CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/smol-rs/async-process' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=2.3.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_process --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/async-process-2.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --warn=unexpected_cfgs --check-cfg 'cfg(async_process_force_signal_backend)' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values())' -C metadata=58ad09e9be6b66bc -C extra-filename=-bbc307405a08f0cb --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_channel=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_channel-f18226281a785e91.rmeta --extern async_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_io-8cbdc47668570ffd.rmeta --extern async_lock=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_lock-0683a2527a530901.rmeta --extern async_signal=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_signal-d07cd8eb6168b409.rmeta --extern async_task=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_task-f74d0378801d2ba1.rmeta --extern cfg_if=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcfg_if-6156ce0c81f34d8b.rmeta --extern event_listener=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libevent_listener-46cb1dd1efa988e8.rmeta --extern futures_lite=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_lite-c529950af307c7ec.rmeta --extern rustix=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/librustix-6853e5ce68a8a52b.rmeta --extern tracing=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtracing-a9c7e12f77a30604.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling kv-log-macro v1.0.8
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=kv_log_macro CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/kv-log-macro-1.0.8 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/kv-log-macro-1.0.8/Cargo.toml CARGO_PKG_AUTHORS='Yoshua Wuyts <yoshuawuyts at gmail.com>' CARGO_PKG_DESCRIPTION='Log macro for log'\''s kv-unstable backend.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=kv-log-macro CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/yoshuawuyts/kv-log-macro' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.0.8 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name kv_log_macro --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/kv-log-macro-1.0.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,test)' --check-cfg 'cfg(feature, values())' -C metadata=1933eefc1dd5c854 -C extra-filename=-f9a4ee31077e15f4 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern log=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblog-b99022cff0643c43.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling memchr v2.7.4
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/memchr-2.7.4 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/memchr-2.7.4/Cargo.toml CARGO_PKG_AUTHORS='Andrew Gallant <jamslam at gmail.com>:bluss' CARGO_PKG_DESCRIPTION='Provides extremely fast (uses SIMD on x86_64, aarch64 and wasm32) routines for
1, 2 or 3 byte search and single substring search.
' 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=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name memchr --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_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,test)' --check-cfg 'cfg(feature, values("alloc", "compiler_builtins", "core", "default", "libc", "logging", "rustc-dep-of-std", "std", "use_std"))' -C metadata=8e883120be7f3211 -C extra-filename=-7d4c8ee163ef72dc --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling async-std v1.13.0
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_std CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/async-std-1.13.0 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/async-std-1.13.0/Cargo.toml CARGO_PKG_AUTHORS='Stjepan Glavina <stjepang at gmail.com>:Yoshua Wuyts <yoshuawuyts at gmail.com>:Friedel Ziegelmayer <me at dignifiedquire.com>:Contributors to async-std' CARGO_PKG_DESCRIPTION='Async version of the Rust standard library' CARGO_PKG_HOMEPAGE='https://async.rs' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-std CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/async-rs/async-std' CARGO_PKG_RUST_VERSION='' CARGO_PKG_VERSION=1.13.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_std --edition=2018 /<<PKGBUILDDIR>>/debian/cargo_registry/async-std-1.13.0/src/lib.rs --error-format=json --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="async-channel"' --cfg 'feature="async-global-executor"' --cfg 'feature="async-io"' --cfg 'feature="async-lock"' --cfg 'feature="async-process"' --cfg 'feature="crossbeam-utils"' --cfg 'feature="default"' --cfg 'feature="futures-core"' --cfg 'feature="futures-io"' --cfg 'feature="futures-lite"' --cfg 'feature="kv-log-macro"' --cfg 'feature="log"' --cfg 'feature="memchr"' --cfg 'feature="once_cell"' --cfg 'feature="pin-project-lite"' --cfg 'feature="pin-utils"' --cfg 'feature="slab"' --cfg 'feature="std"' --cfg 'feature="unstable"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("alloc", "async-attributes", "async-channel", "async-global-executor", "async-io", "async-lock", "async-process", "attributes", "crossbeam-utils", "default", "docs", "futures-core", "futures-io", "futures-lite", "io_safety", "kv-log-macro", "log", "memchr", "once_cell", "pin-project-lite", "pin-utils", "slab", "std", "tokio1", "unstable"))' -C metadata=1ad05fe2c4c69df4 -C extra-filename=-6446a0aea6d36df5 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_channel=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_channel-f18226281a785e91.rmeta --extern async_global_executor=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_global_executor-7d6833374cce2f5f.rmeta --extern async_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_io-8cbdc47668570ffd.rmeta --extern async_lock=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_lock-0683a2527a530901.rmeta --extern async_process=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_process-bbc307405a08f0cb.rmeta --extern crossbeam_utils=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcrossbeam_utils-e029b3b4129907d0.rmeta --extern futures_core=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_core-2fef3c5cbc0ffc3a.rmeta --extern futures_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_io-8671a88e637f3787.rmeta --extern futures_lite=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_lite-c529950af307c7ec.rmeta --extern kv_log_macro=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libkv_log_macro-f9a4ee31077e15f4.rmeta --extern log=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblog-b99022cff0643c43.rmeta --extern memchr=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libmemchr-7d4c8ee163ef72dc.rmeta --extern once_cell=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libonce_cell-05bef0c44f9032ea.rmeta --extern pin_project_lite=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libpin_project_lite-a68b5c7d58bfa2de.rmeta --extern pin_utils=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libpin_utils-1eb632d565e6fccc.rmeta --extern slab=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libslab-e0545b4a2c0720f4.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling hickory-resolver v0.24.4
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=hickory_resolver CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/hickory-resolver-0.24.4 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/hickory-resolver-0.24.4/Cargo.toml CARGO_PKG_AUTHORS='The contributors to Hickory DNS' CARGO_PKG_DESCRIPTION='Hickory DNS is a safe and secure DNS library. This Resolver library uses the Client library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.
' CARGO_PKG_HOMEPAGE='https://hickory-dns.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hickory-resolver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/hickory-dns/hickory-dns' CARGO_PKG_RUST_VERSION=1.71.1 CARGO_PKG_VERSION=0.24.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=24 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name hickory_resolver --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/hickory-resolver-0.24.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 --warn=unexpected_cfgs --check-cfg 'cfg(nightly)' --cfg 'feature="resolv-conf"' --cfg 'feature="system-config"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("backtrace", "default", "dns-over-h3", "dns-over-https", "dns-over-https-rustls", "dns-over-native-tls", "dns-over-openssl", "dns-over-quic", "dns-over-rustls", "dns-over-tls", "dnssec", "dnssec-openssl", "dnssec-ring", "native-certs", "resolv-conf", "rustls", "serde", "serde-config", "system-config", "testing", "tokio", "tokio-native-tls", "tokio-openssl", "tokio-runtime", "tokio-rustls"))' -C metadata=c5ac22211057b25c -C extra-filename=-6a6c3f5490d47d08 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern cfg_if=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libcfg_if-6156ce0c81f34d8b.rmeta --extern futures_util=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_util-a59b257d20a1bfb0.rmeta --extern hickory_proto=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libhickory_proto-145960d75f03b79c.rmeta --extern lru_cache=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblru_cache-b0675636e7b70611.rmeta --extern once_cell=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libonce_cell-05bef0c44f9032ea.rmeta --extern parking_lot=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libparking_lot-81bf8c77ad2dd1b5.rmeta --extern rand=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/librand-356708443434dd1c.rmeta --extern resolv_conf=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libresolv_conf-f5784f97a2033949.rmeta --extern smallvec=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libsmallvec-3c958bf4014db2ab.rmeta --extern thiserror=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libthiserror-2327ca3a78569624.rmeta --extern tracing=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libtracing-a9c7e12f77a30604.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling socket2 v0.5.8
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=socket2 CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>>/debian/cargo_registry/socket2-0.5.8 CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/debian/cargo_registry/socket2-0.5.8/Cargo.toml CARGO_PKG_AUTHORS='Alex Crichton <alex at alexcrichton.com>:Thomas de Zeeuw <thomasdezeeuw at gmail.com>' CARGO_PKG_DESCRIPTION='Utilities for handling networking sockets with a maximal amount of configuration
possible intended.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/socket2' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=socket2 CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/rust-lang/socket2' CARGO_PKG_RUST_VERSION=1.63 CARGO_PKG_VERSION=0.5.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name socket2 --edition=2021 /<<PKGBUILDDIR>>/debian/cargo_registry/socket2-0.5.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("all"))' -C metadata=2a49e3f91f77c68a -C extra-filename=-6bbe9a1d1561595d --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern libc=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/liblibc-4b4b2b1ce84fad0d.rmeta --cap-lints warn -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
Compiling async-std-resolver v0.24.0 (/<<PKGBUILDDIR>>)
Running `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_std_resolver CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>> CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/Cargo.toml CARGO_PKG_AUTHORS='The contributors to Hickory DNS' CARGO_PKG_DESCRIPTION='Hickory DNS is a safe and secure DNS library, for async-std. This Resolver library uses the hickory-proto library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.
' CARGO_PKG_HOMEPAGE='https://hickory-dns.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-std-resolver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/hickory-dns/hickory-dns' CARGO_PKG_RUST_VERSION=1.67.0 CARGO_PKG_VERSION=0.24.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=24 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_std_resolver --edition=2021 src/lib.rs --error-format=json --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="system-config"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "system-config"))' -C metadata=cd89a726a15d903a -C extra-filename=-3e913832950af5d1 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -C incremental=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/incremental -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_std=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_std-6446a0aea6d36df5.rmeta --extern async_trait=/<<PKGBUILDDIR>>/target/debug/deps/libasync_trait-c1bcf4c4eb980897.so --extern futures_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_io-8671a88e637f3787.rmeta --extern futures_util=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_util-a59b257d20a1bfb0.rmeta --extern hickory_resolver=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libhickory_resolver-6a6c3f5490d47d08.rmeta --extern pin_utils=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libpin_utils-1eb632d565e6fccc.rmeta --extern socket2=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libsocket2-6bbe9a1d1561595d.rmeta -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry`
error[E0432]: unresolved import `hickory_resolver::proto::udp::QuicLocalAddr`
--> src/net.rs:18:50
|
18 | use hickory_resolver::proto::udp::{DnsUdpSocket, QuicLocalAddr, UdpSocket};
| ^^^^^^^^^^^^^ no `QuicLocalAddr` in `udp`
error[E0053]: method `new_connection` has an incompatible type for trait
--> src/runtime.rs:129:10
|
129 | ) -> Self::FutureConn {
| ^^^^^^^^^^^^^^^^ expected `Result<ConnectionFuture<...>, ...>`, found `ConnectionFuture<AsyncStdRuntimeProvider>`
|
= note: expected signature `fn(&AsyncStdConnectionProvider, &NameServerConfig, &ResolverOpts) -> Result<name_server::connection_provider::ConnectionFuture<_>, futures_io::Error>`
found signature `fn(&AsyncStdConnectionProvider, &NameServerConfig, &ResolverOpts) -> name_server::connection_provider::ConnectionFuture<_>`
help: change the output type to match the trait
|
129 | ) -> Result<name_server::connection_provider::ConnectionFuture<AsyncStdRuntimeProvider>, futures_io::Error> {
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Some errors have detailed explanations: E0053, E0432.
For more information about an error, try `rustc --explain E0053`.
error: could not compile `async-std-resolver` (lib) due to 2 previous errors
Caused by:
process didn't exit successfully: `CARGO=/usr/bin/cargo CARGO_CRATE_NAME=async_std_resolver CARGO_MANIFEST_DIR=/<<PKGBUILDDIR>> CARGO_MANIFEST_PATH=/<<PKGBUILDDIR>>/Cargo.toml CARGO_PKG_AUTHORS='The contributors to Hickory DNS' CARGO_PKG_DESCRIPTION='Hickory DNS is a safe and secure DNS library, for async-std. This Resolver library uses the hickory-proto library to perform all DNS queries. The Resolver is intended to be a high-level library for any DNS record resolution see Resolver and AsyncResolver for supported resolution types. The Client can be used for other queries.
' CARGO_PKG_HOMEPAGE='https://hickory-dns.org/' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-std-resolver CARGO_PKG_README=README.md CARGO_PKG_REPOSITORY='https://github.com/hickory-dns/hickory-dns' CARGO_PKG_RUST_VERSION=1.67.0 CARGO_PKG_VERSION=0.24.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=24 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' CARGO_PRIMARY_PACKAGE=1 LD_LIBRARY_PATH=/<<PKGBUILDDIR>>/target/debug/deps rustc --crate-name async_std_resolver --edition=2021 src/lib.rs --error-format=json --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="system-config"' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("default", "system-config"))' -C metadata=cd89a726a15d903a -C extra-filename=-3e913832950af5d1 --out-dir /<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps --target x86_64-unknown-linux-gnu -C incremental=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/incremental -L dependency=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps -L dependency=/<<PKGBUILDDIR>>/target/debug/deps --extern async_std=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libasync_std-6446a0aea6d36df5.rmeta --extern async_trait=/<<PKGBUILDDIR>>/target/debug/deps/libasync_trait-c1bcf4c4eb980897.so --extern futures_io=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_io-8671a88e637f3787.rmeta --extern futures_util=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libfutures_util-a59b257d20a1bfb0.rmeta --extern hickory_resolver=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libhickory_resolver-6a6c3f5490d47d08.rmeta --extern pin_utils=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libpin_utils-1eb632d565e6fccc.rmeta --extern socket2=/<<PKGBUILDDIR>>/target/x86_64-unknown-linux-gnu/debug/deps/libsocket2-6bbe9a1d1561595d.rmeta -C debuginfo=2 -C strip=none --cap-lints warn -C linker=x86_64-linux-gnu-gcc -C link-arg=-Wl,-z,relro --remap-path-prefix /<<PKGBUILDDIR>>=/usr/share/cargo/registry/async-std-resolver-0.24.0 --remap-path-prefix /<<PKGBUILDDIR>>/debian/cargo_registry=/usr/share/cargo/registry` (exit status: 1)
dh_auto_test: error: /usr/share/cargo/bin/cargo build returned exit code 101
make: *** [debian/rules:3: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:
https://people.debian.org/~sanvila/build-logs/202503/
About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.
If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:rust-async-std-resolver, so that this is still
visible in the BTS web page for this package.
Thanks.
More information about the Pkg-rust-maintainers
mailing list