=> Bootstrap dependency digest>=20211023: found digest-20220214 ===> Skipping vulnerability checks. WARNING: No /usr/pkg/pkgdb/pkg-vulnerabilities file found. WARNING: To fix run: `/usr/sbin/pkg_admin -K /usr/pkg/pkgdb fetch-pkg-vulnerabilities'. ===> Building for gobang-0.1.0alpha5nb5 Compiling libc v0.2.97 Compiling autocfg v1.0.1 Compiling version_check v0.9.3 Compiling proc-macro2 v1.0.27 Compiling unicode-xid v0.2.2 Compiling quote v1.0.9 Compiling syn v1.0.73 Compiling cfg-if v1.0.0 Compiling memchr v2.4.0 Compiling libm v0.2.1 Compiling num-traits v0.2.14 Compiling cc v1.0.68 Compiling typenum v1.13.0 Compiling log v0.4.14 Compiling generic-array v0.14.4 Compiling num-integer v0.1.44 Compiling ring v0.16.20 Compiling futures-core v0.3.15 Compiling spin v0.5.2 Compiling once_cell v1.8.0 Compiling bitflags v1.2.1 Compiling ahash v0.7.4 Compiling ryu v1.0.5 Compiling tokio v1.11.0 Compiling futures-task v0.3.15 Compiling proc-macro-nested v0.1.7 Compiling futures-channel v0.3.15 Compiling smallvec v1.6.1 Compiling radium v0.5.3 Compiling getrandom v0.2.3 Compiling serde_derive v1.0.126 Compiling serde v1.0.126 Compiling proc-macro-hack v0.5.19 Compiling instant v0.1.9 Compiling signal-hook-registry v1.4.0 Compiling tokio-macros v1.3.0 Compiling num-iter v0.1.42 Compiling num-bigint v0.4.2 Compiling futures-util v0.3.15 Compiling futures-macro v0.3.15 Compiling crossbeam-utils v0.8.5 Compiling lexical-core v0.7.6 Compiling scopeguard v1.1.0 Compiling lock_api v0.4.4 Compiling parking_lot_core v0.8.3 Compiling mio v0.7.13 Compiling lazy_static v1.4.0 Compiling thiserror-impl v1.0.25 Compiling synstructure v0.12.4 Compiling autocfg v0.1.7 Compiling num-bigint-dig v0.7.0 Compiling zeroize_derive v1.1.0 Compiling parking_lot v0.11.1 Compiling nom v6.1.2 Compiling indexmap v1.7.0 Compiling pin-project-lite v0.2.6 Compiling untrusted v0.7.1 Compiling pkg-config v0.3.19 Compiling libsqlite3-sys v0.22.2 Compiling digest v0.9.0 Compiling num-bigint v0.3.2 Compiling tinyvec_macros v0.1.0 Compiling whoami v1.1.2 Compiling base64 v0.13.0 Compiling matches v0.1.8 Compiling crossbeam-queue v0.3.2 Compiling serde_json v1.0.64 Compiling tinyvec v1.2.0 Compiling webpki v0.21.4 Compiling rand_core v0.6.3 Compiling aho-corasick v0.7.18 Compiling num_cpus v1.13.0 Compiling regex-syntax v0.6.25 Compiling bytes v1.1.0 Compiling ppv-lite86 v0.2.10 Compiling futures-sink v0.3.15 Compiling arrayvec v0.5.2 Compiling rand_chacha v0.3.1 Compiling regex v1.5.4 Compiling hashbrown v0.11.2 Compiling unicode-normalization v0.1.19 Compiling unicode-bidi v0.3.5 Compiling sct v0.6.1 Compiling block-buffer v0.9.0 Compiling time v0.1.43 Compiling pin-utils v0.1.0 Compiling subtle v2.4.0 Compiling futures-io v0.3.15 Compiling tap v1.0.1 Compiling static_assertions v1.1.0 Compiling wyz v0.2.0 Compiling opaque-debug v0.3.0 Compiling unicode-segmentation v1.7.1 Compiling slab v0.4.3 Compiling funty v1.1.0 Compiling bitvec v0.19.5 Compiling heck v0.3.3 Compiling chrono v0.4.19 Compiling rustls v0.19.1 Compiling rand v0.8.4 Compiling zeroize v1.3.0 Compiling thiserror v1.0.25 Compiling proc-macro-error-attr v1.0.4 Compiling byteorder v1.4.3 Compiling percent-encoding v2.1.0 Compiling cpufeatures v0.1.5 Compiling form_urlencoded v1.0.1 Compiling simple_asn1 v0.5.4 Compiling tokio-rustls v0.22.0 Compiling crypto-mac v0.10.1 Compiling idna v0.2.3 Compiling pem v0.8.3 Compiling dirs-sys v0.3.6 Compiling proc-macro-error v1.0.4 Compiling itoa v0.4.7 Compiling unicode-width v0.1.8 Compiling either v1.6.1 Compiling unicode_categories v0.1.1 Compiling signal-hook v0.3.10 Compiling maplit v1.0.2 Compiling sqlformat v0.1.6 Compiling dirs v3.0.2 error[E0308]: mismatched types --> /tmp/databases/gobang/work/vendor/num-bigint-0.3.2/src/biguint/convert.rs:70:19 | 70 | .div_ceil(&big_digit::BITS.into()) | -------- ^^^^^^^^^^^^^^^^^^^^^^^ expected `u64`, found `&_` | | | arguments to this method are incorrect | = note: expected type `u64` found reference `&_` note: method defined here --> /tmp/lang/rust/work/rustc-1.73.0-src/library/core/src/num/mod.rs:1167:5 = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider removing the borrow | 70 - .div_ceil(&big_digit::BITS.into()) 70 + .div_ceil(big_digit::BITS.into()) | error[E0308]: mismatched types --> /tmp/databases/gobang/work/vendor/num-bigint-0.3.2/src/biguint/convert.rs:585:19 | 585 | .div_ceil(&u64::from(bits)) | -------- ^^^^^^^^^^^^^^^^ expected `u64`, found `&u64` | | | arguments to this method are incorrect | note: method defined here --> /tmp/lang/rust/work/rustc-1.73.0-src/library/core/src/num/mod.rs:1167:5 = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider removing the borrow | 585 - .div_ceil(&u64::from(bits)) 585 + .div_ceil(u64::from(bits)) | error[E0308]: mismatched types --> /tmp/databases/gobang/work/vendor/num-bigint-0.3.2/src/biguint/convert.rs:613:19 | 613 | .div_ceil(&u64::from(bits)) | -------- ^^^^^^^^^^^^^^^^ expected `u64`, found `&u64` | | | arguments to this method are incorrect | note: method defined here --> /tmp/lang/rust/work/rustc-1.73.0-src/library/core/src/num/mod.rs:1167:5 = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider removing the borrow | 613 - .div_ceil(&u64::from(bits)) 613 + .div_ceil(u64::from(bits)) | error[E0308]: mismatched types --> /tmp/databases/gobang/work/vendor/num-bigint-0.3.2/src/biguint.rs:393:54 | 393 | let root_scale = extra_bits.div_ceil(&n64); | -------- ^^^^ expected `u64`, found `&u64` | | | arguments to this method are incorrect | note: method defined here --> /tmp/lang/rust/work/rustc-1.73.0-src/library/core/src/num/mod.rs:1167:5 = note: this error originates in the macro `uint_impl` (in Nightly builds, run with -Z macro-backtrace for more info) help: consider removing the borrow | 393 - let root_scale = extra_bits.div_ceil(&n64); 393 + let root_scale = extra_bits.div_ceil(n64); | For more information about this error, try `rustc --explain E0308`. error: could not compile `num-bigint` (lib) due to 4 previous errors *** Error code 101 Stop. make[1]: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/databases/gobang *** Error code 1 Stop. make: stopped in /amd/pkgsrc/CHROOT/P/pkgsrc/databases/gobang