Skip to content

Instantly share code, notes, and snippets.

@Dygear
Last active January 15, 2022 21:58
Show Gist options
  • Save Dygear/4d370b6c614b9a9faa63b4da70466adb to your computer and use it in GitHub Desktop.
Save Dygear/4d370b6c614b9a9faa63b4da70466adb to your computer and use it in GitHub Desktop.
Deno ARM64 build (Raspberry Pi OS 64Bit)
pi@deno:~ $ git clone --recurse-submodules https://github.com/denoland/deno.git
Cloning into 'deno'...
remote: Enumerating objects: 41525, done.
remote: Total 41525 (delta 0), reused 0 (delta 0), pack-reused 41525
Receiving objects: 100% (41525/41525), 22.54 MiB | 12.15 MiB/s, done.
Resolving deltas: 100% (31368/31368), done.
Submodule 'std/wasi/testdata' (https://github.com/khronosproject/wasi-test-suite.git) registered for path 'std/wasi/testdata'
Submodule 'deno_third_party' (https://github.com/denoland/deno_third_party.git) registered for path 'third_party'
Cloning into '/home/pi/deno/std/wasi/testdata'...
remote: Enumerating objects: 251, done.
remote: Counting objects: 100% (251/251), done.
remote: Compressing objects: 100% (51/51), done.
remote: Total 251 (delta 184), reused 231 (delta 167), pack-reused 0
Receiving objects: 100% (251/251), 5.71 MiB | 15.68 MiB/s, done.
Resolving deltas: 100% (184/184), done.
Cloning into '/home/pi/deno/third_party'...
remote: Enumerating objects: 112654, done.
remote: Total 112654 (delta 0), reused 0 (delta 0), pack-reused 112654
Receiving objects: 100% (112654/112654), 313.71 MiB | 12.21 MiB/s, done.
Resolving deltas: 100% (55981/55981), done.
Submodule path 'std/wasi/testdata': checked out '7f8aa6ba628a2bea3612e50638b8c9c9c4bb71a8'
Submodule path 'third_party': checked out 'e80050929aec91d594d68fc01f3919de70a1dc3d'
pi@deno:~ $ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
info: downloading installer
Welcome to Rust!
This will download and install the official compiler for the Rust
programming language, and its package manager, Cargo.
Rustup metadata and toolchains will be installed into the Rustup
home directory, located at:
/home/pi/.rustup
This can be modified with the RUSTUP_HOME environment variable.
The Cargo home directory located at:
/home/pi/.cargo
This can be modified with the CARGO_HOME environment variable.
The cargo, rustc, rustup and other commands will be added to
Cargo's bin directory, located at:
/home/pi/.cargo/bin
This path will then be added to your PATH environment variable by
modifying the profile file located at:
/home/pi/.profile
You can uninstall at any time with rustup self uninstall and
these changes will be reverted.
Current installation options:
default host triple: aarch64-unknown-linux-gnu
default toolchain: stable (default)
profile: default
modify PATH variable: yes
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>2
I'm going to ask you the value of each of these installation options.
You may simply press the Enter key to leave unchanged.
Default host triple?
Default toolchain? (stable/beta/nightly/none)
Profile (which tools and data to install)? (minimal/default/complete)
Modify PATH variable? (y/n)
Current installation options:
default host triple: aarch64-unknown-linux-gnu
default toolchain: stable
profile: default
modify PATH variable: yes
1) Proceed with installation (default)
2) Customize installation
3) Cancel installation
>1
info: profile set to 'default'
info: setting default host triple to aarch64-unknown-linux-gnu
info: syncing channel updates for 'stable-aarch64-unknown-linux-gnu'
info: latest update on 2020-10-08, rust version 1.47.0 (18bf6b4f0 2020-10-07)
info: downloading component 'cargo'
info: downloading component 'clippy'
info: downloading component 'rust-std'
25.9 MiB / 25.9 MiB (100 %) 19.1 MiB/s in 2s ETA: 0s
info: downloading component 'rustc'
62.3 MiB / 62.3 MiB (100 %) 23.2 MiB/s in 5s ETA: 0s
info: downloading component 'rustfmt'
info: installing component 'cargo'
info: Defaulting to 500.0 MiB unpack ram
info: installing component 'clippy'
info: installing component 'rust-std'
25.9 MiB / 25.9 MiB (100 %) 5.5 MiB/s in 4s ETA: 0s
info: installing component 'rustc'
62.3 MiB / 62.3 MiB (100 %) 6.0 MiB/s in 10s ETA: 0s
info: installing component 'rustfmt'
info: default toolchain set to 'stable'
stable installed - rustc 1.47.0 (18bf6b4f0 2020-10-07)
Rust is installed now. Great!
To get started you need Cargo's bin directory ($HOME/.cargo/bin) in your PATH
environment variable. Next time you log in this will be done
automatically.
To configure your current shell run source $HOME/.cargo/env
pi@deno:~ $ source $HOME/.cargo/env
pi@deno:~ $ cd deno/
pi@deno:~/deno $ rustup target add wasm32-unknown-unknown
info: downloading component 'rust-std' for 'wasm32-unknown-unknown'
info: installing component 'rust-std' for 'wasm32-unknown-unknown'
info: Defaulting to 500.0 MiB unpack ram
12.9 MiB / 12.9 MiB (100 %) 5.7 MiB/s in 2s ETA: 0s
pi@deno:~/deno $ rustup target add wasm32-wasi
info: downloading component 'rust-std' for 'wasm32-wasi'
info: installing component 'rust-std' for 'wasm32-wasi'
info: Defaulting to 500.0 MiB unpack ram
13.2 MiB / 13.2 MiB (100 %) 5.8 MiB/s in 2s ETA: 0s
pi@deno:~/deno $ ls -lha
total 276K
drwxr-xr-x 14 pi pi 4.0K Oct 17 23:45 .
drwxr-xr-x 18 pi pi 4.0K Oct 17 23:54 ..
drwxr-xr-x 2 pi pi 4.0K Oct 17 23:45 .cargo
-rw-r--r-- 1 pi pi 74K Oct 17 23:45 Cargo.lock
-rw-r--r-- 1 pi pi 392 Oct 17 23:45 Cargo.toml
drwxr-xr-x 8 pi pi 4.0K Oct 17 23:45 cli
-rw-r--r-- 1 pi pi 245 Oct 17 23:45 CODE_OF_CONDUCT.md
drwxr-xr-x 3 pi pi 4.0K Oct 17 23:45 core
drwxr-xr-x 10 pi pi 4.0K Oct 17 23:45 docs
-rw-r--r-- 1 pi pi 867 Oct 17 23:45 .dprintrc.json
-rw-r--r-- 1 pi pi 278 Oct 17 23:45 .editorconfig
-rw-r--r-- 1 pi pi 157 Oct 17 23:45 .eslintignore
-rw-r--r-- 1 pi pi 1.4K Oct 17 23:45 .eslintrc.json
drwxr-xr-x 9 pi pi 4.0K Oct 17 23:45 .git
-rw-r--r-- 1 pi pi 462 Oct 17 23:45 .gitattributes
drwxr-xr-x 3 pi pi 4.0K Oct 17 23:45 .github
-rw-r--r-- 1 pi pi 577 Oct 17 23:45 .gitignore
-rw-r--r-- 1 pi pi 226 Oct 17 23:45 .gitmodules
-rw-r--r-- 1 pi pi 1.1K Oct 17 23:45 LICENSE
drwxr-xr-x 4 pi pi 4.0K Oct 17 23:45 op_crates
-rw-r--r-- 1 pi pi 2.4K Oct 17 23:45 README.md
-rw-r--r-- 1 pi pi 95K Oct 17 23:45 Releases.md
-rw-r--r-- 1 pi pi 120 Oct 17 23:45 .rustfmt.toml
drwxr-xr-x 26 pi pi 4.0K Oct 17 23:45 std
drwxr-xr-x 4 pi pi 4.0K Oct 17 23:45 test_plugin
drwxr-xr-x 3 pi pi 4.0K Oct 17 23:45 test_util
drwxr-xr-x 5 pi pi 4.0K Oct 17 23:45 third_party
drwxr-xr-x 2 pi pi 4.0K Oct 17 23:45 tools
pi@deno:~/deno $ V8_FROM_SOURCE=1 cargo build -vv
Updating crates.io index
Downloaded adler v0.2.3
Downloaded anyhow v1.0.32
Downloaded base64 v0.12.3
Downloaded byteorder v1.3.4
Downloaded fnv v1.0.7
Downloaded http-body v0.3.1
Downloaded new_debug_unreachable v1.0.4
Downloaded num-integer v0.1.43
Downloaded num_cpus v1.13.0
Downloaded bytes v0.5.6
Downloaded pin-project-lite v0.1.7
Downloaded pin-project-internal v0.4.23
Downloaded pin-project v0.4.23
Downloaded pmutil v0.5.3
Downloaded ppv-lite86 v0.2.9
Downloaded quote v1.0.7
Downloaded proc-macro2 v1.0.21
Downloaded proc-macro2 v0.4.30
Downloaded rand_chacha v0.2.2
Downloaded remove_dir_all v0.5.3
Downloaded retain_mut v0.1.1
Downloaded ryu v1.0.5
Downloaded dprint-core v0.31.0
Downloaded sct v0.6.0
Downloaded semver v0.9.0
Downloaded semver-parser v0.9.0
Downloaded sha-1 v0.8.2
Downloaded slab v0.4.2
Downloaded signal-hook-registry v1.2.1
Downloaded static_assertions v1.1.0
Downloaded strsim v0.8.0
Downloaded strsim v0.9.3
Downloaded sourcemap v6.0.1
Downloaded string_cache_codegen v0.5.1
Downloaded spin v0.5.2
Downloaded siphasher v0.3.3
Downloaded swc_ecma_ast v0.33.1
Downloaded input_buffer v0.3.1
Downloaded same-file v1.0.6
Downloaded rand_core v0.3.1
Downloaded swc_macros_common v0.3.1
Downloaded try-lock v0.2.3
Downloaded twoway v0.1.8
Downloaded swc_visit_macros v0.2.0
Downloaded unicode-segmentation v1.6.0
Downloaded unicode-width v0.1.8
Downloaded tinyvec v0.3.4
Downloaded swc_ecma_transforms_macros v0.1.1
Downloaded swc_ecma_codegen_macros v0.5.0
Downloaded tracing-futures v0.2.4
Downloaded unicode-xid v0.2.1
Downloaded swc_ecma_visit v0.19.0
Downloaded termcolor v1.1.0
Downloaded unicase v2.6.0
Downloaded serde v1.0.116
Downloaded walkdir v2.3.1
Downloaded webpki v0.21.3
Downloaded uuid v0.8.1
Downloaded mio v0.6.22
Downloaded headers v0.3.2
Downloaded rand_chacha v0.1.1
Downloaded ring v0.16.15
Downloaded rustls v0.18.1
Downloaded deno_lint v0.2.4
Downloaded regex-syntax v0.6.18
Downloaded url v2.1.1
Downloaded swc_ecma_parser v0.39.0
Downloaded tempfile v3.1.0
Downloaded unicode-xid v0.1.0
Downloaded tower-service v0.3.0
Downloaded want v0.3.0
Downloaded which v4.0.2
Downloaded idna v0.2.0
Downloaded nix v0.18.0
Downloaded tokio v0.2.22
Downloaded syn v1.0.41
Downloaded webpki-roots v0.19.0
Downloaded cargo_gn v0.0.15
Downloaded utf-8 v0.7.5
Downloaded nom v5.1.2
Downloaded warp v0.2.5
Downloaded urlencoding v1.1.1
Downloaded untrusted v0.7.1
Downloaded unicode-bidi v0.3.4
Downloaded tracing v0.1.19
Downloaded tokio-util v0.3.1
Downloaded libc v0.2.77
Downloaded rusty_v8 v0.11.0
Downloaded swc_ecma_transforms v0.26.1
Downloaded tokio-tungstenite v0.11.0
Downloaded tokio-rustls v0.14.1
Downloaded lexical-core v0.7.4
Downloaded syn v0.15.44
Downloaded tokio-macros v0.2.5
Downloaded swc_ecma_parser_macros v0.4.1
Downloaded sys-info v0.7.0
Downloaded hyper v0.13.7
Downloaded futures-util v0.3.5
Downloaded reqwest v0.10.8
Downloaded brotli v3.3.0
Downloaded encoding_rs v0.8.24
Downloaded unicode-normalization v0.1.13
Downloaded regex v1.3.9
Downloaded h2 v0.2.6
Downloaded enum_kind v0.2.0
Downloaded dprint-plugin-typescript v0.32.5
Downloaded version_check v0.9.2
Downloaded vec_map v0.8.2
Downloaded utf8parse v0.2.0
Downloaded clap v2.33.3
Downloaded jsdoc v0.7.0
Downloaded typenum v1.12.0
Downloaded tracing-core v0.1.16
Downloaded textwrap v0.11.0
Downloaded serde_json v1.0.57
Downloaded rustyline v6.3.0
Downloaded thiserror-impl v1.0.20
Downloaded thiserror v1.0.20
Downloaded swc_common v0.10.4
Downloaded rand v0.6.5
Downloaded hashbrown v0.9.0
Downloaded rand v0.7.3
Downloaded swc_ecma_utils v0.23.0
Downloaded num-bigint v0.2.6
Downloaded swc_ecma_codegen v0.37.0
Downloaded tungstenite v0.11.1
Downloaded time v0.1.44
Downloaded swc_ecma_dep_graph v0.5.0
Downloaded swc_visit v0.2.0
Downloaded quick-error v1.2.3
Downloaded flate2 v1.0.17
Downloaded thread_local v1.0.1
Downloaded swc_ecmascript v0.10.1
Downloaded smallvec v1.4.2
Downloaded rustyline-derive v0.3.1
Downloaded swc_atoms v0.2.4
Downloaded num-traits v0.2.12
Downloaded digest v0.8.1
Downloaded multipart v0.17.0
Downloaded mio-extras v2.0.6
Downloaded dtoa v0.4.6
Downloaded if_chain v1.0.0
Downloaded maybe-uninit v2.0.0
Downloaded generic-array v0.14.4
Downloaded from_variant v0.1.2
Downloaded autocfg v0.1.7
Downloaded dissimilar v1.0.2
Downloaded semver-parser v0.7.0
Downloaded rand_xorshift v0.1.1
Downloaded rand_core v0.4.2
Downloaded memchr v2.3.3
Downloaded lazycell v1.3.0
Downloaded itoa v0.4.6
Downloaded once_cell v1.4.1
Downloaded miniz_oxide v0.4.2
Downloaded string_enum v0.3.0
Downloaded net2 v0.2.35
Downloaded mime_guess v2.0.3
Downloaded string_cache v0.8.0
Downloaded owning_ref v0.4.1
Downloaded mio-uds v0.6.8
Downloaded mime v0.3.16
Downloaded matches v0.1.8
Downloaded log v0.4.11
Downloaded jsonc-parser v0.14.0
Downloaded stable_deref_trait v1.2.0
Downloaded socket2 v0.3.15
Downloaded rand_isaac v0.1.1
Downloaded lazy_static v1.4.0
Downloaded inotify v0.8.3
Downloaded indexmap v1.6.0
Downloaded iovec v0.1.4
Downloaded hyper-rustls v0.21.0
Downloaded fake-simd v0.1.2
Downloaded dlopen v0.1.8
Downloaded sha-1 v0.9.1
Downloaded rand_pcg v0.1.2
Downloaded inotify-sys v0.1.3
Downloaded serde_urlencoded v0.6.1
Downloaded serde_derive v1.0.116
Downloaded opaque-debug v0.3.0
Downloaded ipnet v2.3.0
Downloaded rand_os v0.1.3
Downloaded is-macro v0.1.8
Downloaded scoped-tls v1.0.0
Downloaded ident_case v1.0.1
Downloaded safemem v0.3.3
Downloaded rustc_version v0.2.3
Downloaded humantime v1.3.0
Downloaded errno v0.1.8
Downloaded dlopen_derive v0.1.4
Downloaded pty v0.2.2
Downloaded headers-core v0.2.0
Downloaded rand_jitter v0.1.4
Downloaded httparse v1.3.4
Downloaded generic-array v0.12.3
Downloaded rand_pcg v0.2.1
Downloaded rand_hc v0.1.0
Downloaded rand_core v0.5.1
Downloaded pin-utils v0.1.0
Downloaded getrandom v0.1.15
Downloaded fxhash v0.2.1
Downloaded futures-task v0.3.5
Downloaded futures-macro v0.3.5
Downloaded quote v0.6.13
Downloaded futures-sink v0.3.5
Downloaded futures-io v0.3.5
Downloaded futures v0.3.5
Downloaded futures-executor v0.3.5
Downloaded futures-channel v0.3.5
Downloaded filetime v0.2.12
Downloaded env_logger v0.7.1
Downloaded proc-macro-nested v0.1.6
Downloaded proc-macro-hack v0.5.18
Downloaded precomputed-hash v0.1.1
Downloaded os_pipe v0.9.2
Downloaded either v1.6.0
Downloaded deno_doc v0.1.12
Downloaded percent-encoding v2.1.0
Downloaded digest v0.9.0
Downloaded dashmap v3.11.10
Downloaded const-random-macro v0.1.8
Downloaded const-random v0.1.8
Downloaded brotli-decompressor v2.3.1
Downloaded opaque-debug v0.2.3
Downloaded darling v0.10.2
Downloaded darling_core v0.10.2
Downloaded crossbeam-channel v0.4.4
Downloaded darling_macro v0.10.2
Downloaded crossbeam-utils v0.7.2
Downloaded crc32fast v1.2.0
Downloaded cc v1.0.59
Downloaded buf_redux v0.8.4
Downloaded phf_shared v0.8.0
Downloaded phf_macros v0.8.0
Downloaded phf_generator v0.8.0
Downloaded phf v0.8.0
Downloaded ordered-float v1.1.0
Downloaded notify v5.0.0-pre.3
Downloaded cfg-if v0.1.10
Downloaded block-buffer v0.9.0
Downloaded block-padding v0.1.5
Downloaded async-compression v0.3.5
Downloaded block-buffer v0.7.3
Downloaded ansi_term v0.11.0
Downloaded bitflags v1.2.1
Downloaded base64 v0.11.0
Downloaded autocfg v1.0.1
Downloaded alloc-stdlib v0.2.1
Downloaded futures-core v0.3.5
Downloaded anymap v0.12.1
Downloaded http v0.2.1
Downloaded arc-swap v0.4.7
Downloaded alloc-no-stdlib v2.0.1
Downloaded ahash v0.3.8
Downloaded byte-tools v0.3.1
Downloaded arrayvec v0.5.1
Downloaded ast_node v0.7.0
Downloaded aho-corasick v0.7.13
Downloaded atty v0.2.14
Downloaded Inflector v0.11.4
Downloaded 261 crates (29.9 MB) in 6.28s (largest was `rusty_v8` at 10.3 MB)
Compiling libc v0.2.77
Compiling proc-macro2 v1.0.21
Compiling unicode-xid v0.2.1
Compiling syn v1.0.41
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc.
' 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_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_VERSION=0.2.77 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=77 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="extra_traits"' --cfg 'feature="std"' -C metadata=d888e6551c3ceea9 -C extra-filename=-d888e6551c3ceea9 --out-dir /home/pi/deno/target/debug/build/libc-d888e6551c3ceea9 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.21 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>:David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_VERSION=1.0.21 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=21 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.21/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=ee672a384601fb55 -C extra-filename=-ee672a384601fb55 --out-dir /home/pi/deno/target/debug/build/proc-macro2-ee672a384601fb55 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_xid CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1 CARGO_PKG_AUTHORS='erick.tryzelaar <erick.tryzelaar@gmail.com>:kwantam <kwantam@gmail.com>' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start
or XID_Continue properties according to
Unicode Standard Annex #31.
' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-xid' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-xid CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-xid' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_xid /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=4894bad51f05f12f -C extra-filename=-4894bad51f05f12f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.41 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_VERSION=1.0.41 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=41 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.41/build.rs --error-format=json --json=diagnostic-rendered-ansi --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="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --cfg 'feature="visit-mut"' -C metadata=c92631d804cd03ac -C extra-filename=-c92631d804cd03ac --out-dir /home/pi/deno/target/debug/build/syn-c92631d804cd03ac -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling cfg-if v0.1.10
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=cfg_if CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A macro to ergonomically define an item depending on a large number of #[cfg]
parameters. Structured like an if-else chain, the first matching branch is the
item that gets emitted.
' 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_REPOSITORY='https://github.com/alexcrichton/cfg-if' CARGO_PKG_VERSION=0.1.10 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name cfg_if --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=ae7713a377e1c745 -C extra-filename=-ae7713a377e1c745 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling autocfg v1.0.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1 CARGO_PKG_AUTHORS='Josh Stone <cuviper@gmail.com>' 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_REPOSITORY='https://github.com/cuviper/autocfg' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name autocfg /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=498f89fd554adaf6 -C extra-filename=-498f89fd554adaf6 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling memchr v2.3.3
Compiling lazy_static v1.4.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>:bluss' CARGO_PKG_DESCRIPTION='Safe interface to memchr.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/rust-memchr' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/rust-memchr' CARGO_PKG_VERSION=2.3.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="use_std"' -C metadata=31e3fb544b229019 -C extra-filename=-31e3fb544b229019 --out-dir /home/pi/deno/target/debug/build/memchr-31e3fb544b229019 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=lazy_static CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0 CARGO_PKG_AUTHORS='Marvin Löbel <loebel.marvin@gmail.com>' CARGO_PKG_DESCRIPTION='A macro for declaring lazily evaluated statics in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazy_static CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/lazy-static.rs' CARGO_PKG_VERSION=1.4.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name lazy_static /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.4.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f21e17e917b8469c -C extra-filename=-f21e17e917b8469c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling log v0.4.11
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_VERSION=0.4.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=494bb93da4044d1c -C extra-filename=-494bb93da4044d1c --out-dir /home/pi/deno/target/debug/build/log-494bb93da4044d1c -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling getrandom v0.1.15
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15 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_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_VERSION=0.1.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=8e5cf7dbe64db8fd -C extra-filename=-8e5cf7dbe64db8fd --out-dir /home/pi/deno/target/debug/build/getrandom-8e5cf7dbe64db8fd -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling once_cell v1.4.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=once_cell CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.4.1 CARGO_PKG_AUTHORS='Aleksey Kladov <aleksey.kladov@gmail.com>' 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_REPOSITORY='https://github.com/matklad/once_cell' CARGO_PKG_VERSION=1.4.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name once_cell --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/once_cell-1.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=65477b46ede36c3e -C extra-filename=-65477b46ede36c3e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling fnv v1.0.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=fnv CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' 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_REPOSITORY='https://github.com/servo/rust-fnv' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name fnv /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.7/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=ce4aa5efcd7fd8c5 -C extra-filename=-ce4aa5efcd7fd8c5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling serde_derive v1.0.116
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.116 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_VERSION=1.0.116 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=116 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.116/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=dd4701a010ef3a3e -C extra-filename=-dd4701a010ef3a3e --out-dir /home/pi/deno/target/debug/build/serde_derive-dd4701a010ef3a3e -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling serde v1.0.116
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.116 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_VERSION=1.0.116 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=116 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.116/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' -C metadata=80d3077ace09e239 -C extra-filename=-80d3077ace09e239 --out-dir /home/pi/deno/target/debug/build/serde-80d3077ace09e239 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling itoa v0.4.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=itoa CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Fast functions for printing integer primitives to an io::Write' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=itoa CARGO_PKG_REPOSITORY='https://github.com/dtolnay/itoa' CARGO_PKG_VERSION=0.4.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name itoa /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=e569e81afa0271ce -C extra-filename=-e569e81afa0271ce --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling version_check v0.9.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=version_check CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2 CARGO_PKG_AUTHORS='Sergio Benitez <sb@sergio.bz>' CARGO_PKG_DESCRIPTION='Tiny crate to check the version of the installed/running rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=version_check CARGO_PKG_REPOSITORY='https://github.com/SergioBenitez/version_check' CARGO_PKG_VERSION=0.9.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name version_check /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/version_check-0.9.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=c87062650e0f7bb5 -C extra-filename=-c87062650e0f7bb5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling matches v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=matches CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8 CARGO_PKG_AUTHORS='Simon Sapin <simon.sapin@exyr.org>' CARGO_PKG_DESCRIPTION='A macro to evaluate, as a boolean, whether an expression matches a pattern.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=matches CARGO_PKG_REPOSITORY='https://github.com/SimonSapin/rust-std-candidates' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name matches /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=21b49b161ff46c1a -C extra-filename=-21b49b161ff46c1a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling tinyvec v0.3.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tinyvec CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4 CARGO_PKG_AUTHORS='Lokathor <zefria@gmail.com>' CARGO_PKG_DESCRIPTION='Just, really the littlest Vec you could need. So smol.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Zlib OR Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tinyvec CARGO_PKG_REPOSITORY='https://github.com/Lokathor/tinyvec' CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tinyvec --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' -C metadata=99577869885929a5 -C extra-filename=-99577869885929a5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling hashbrown v0.9.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=hashbrown CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.9.0 CARGO_PKG_AUTHORS='Amanieu d'\''Antras <amanieu@gmail.com>' CARGO_PKG_DESCRIPTION='A Rust port of Google'\''s SwissTable hash map' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hashbrown CARGO_PKG_REPOSITORY='https://github.com/rust-lang/hashbrown' CARGO_PKG_VERSION=0.9.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name hashbrown --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/hashbrown-0.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="raw"' -C metadata=678b7731143f8a88 -C extra-filename=-678b7731143f8a88 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling proc-macro-hack v0.5.18
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=proc_macro_hack CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.18 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Procedural macros in expression position' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-hack CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro-hack' CARGO_PKG_VERSION=0.5.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name proc_macro_hack --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-hack-0.5.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=a166a5799dd8092d -C extra-filename=-a166a5799dd8092d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro --cap-lints warn`
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/arrayvec.rs:404:7
|
404 | replace(&mut self.data.as_slice_mut()[self.len], val);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/tinyvec.rs:150:9
|
150 | replace(self, TinyVec::Heap(v));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 2 warnings emitted
Compiling ppv-lite86 v0.2.9
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ppv_lite86 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9 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_REPOSITORY='https://github.com/cryptocorrosion/cryptocorrosion' CARGO_PKG_VERSION=0.2.9 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ppv_lite86 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="simd"' --cfg 'feature="std"' -C metadata=80a7585dcfb74173 -C extra-filename=-80a7585dcfb74173 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: associated type `u32x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:225:10
|
225 | type u32x4: u32x4<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4`
|
= note: `#[warn(non_camel_case_types)]` on by default
warning: associated type `u64x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:226:10
|
226 | type u64x2: u64x2<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2`
warning: associated type `u128x1` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:227:10
|
227 | type u128x1: u128x1<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x1`
warning: associated type `u32x4x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:229:10
|
229 | type u32x4x2: u32x4x2<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4x2`
warning: associated type `u64x2x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:230:10
|
230 | type u64x2x2: u64x2x2<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2x2`
warning: associated type `u64x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:231:10
|
231 | type u64x4: u64x4<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x4`
warning: associated type `u128x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:232:10
|
232 | type u128x2: u128x2<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x2`
warning: associated type `u32x4x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:234:10
|
234 | type u32x4x4: u32x4x4<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4x4`
warning: associated type `u64x2x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:235:10
|
235 | type u64x2x4: u64x2x4<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2x4`
warning: associated type `u128x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:236:10
|
236 | type u128x4: u128x4<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x4`
Compiling percent-encoding v2.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=percent_encoding CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0 CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='Percent encoding and decoding' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=percent-encoding CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url/' CARGO_PKG_VERSION=2.1.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name percent_encoding /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/percent-encoding-2.1.0/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=c99a22928827f829 -C extra-filename=-c99a22928827f829 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling ryu v1.0.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Fast floating point to string conversion' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR BSL-1.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ryu CARGO_PKG_REPOSITORY='https://github.com/dtolnay/ryu' CARGO_PKG_VERSION=1.0.5 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=ef585719cbf58101 -C extra-filename=-ef585719cbf58101 --out-dir /home/pi/deno/target/debug/build/ryu-ef585719cbf58101 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: unused variable: `q`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/generic.rs:66:13
|
66 | fn from(q: [u64; 4]) -> Self {
| ^ help: if this is intentional, prefix it with an underscore: `_q`
|
= note: `#[warn(unused_variables)]` on by default
Compiling bitflags v1.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags.
' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=639b83869d847136 -C extra-filename=-639b83869d847136 --out-dir /home/pi/deno/target/debug/build/bitflags-639b83869d847136 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling serde_json v1.0.57
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_VERSION=1.0.57 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=57 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="indexmap"' --cfg 'feature="preserve_order"' --cfg 'feature="std"' -C metadata=d3fad67eb0e9c111 -C extra-filename=-d3fad67eb0e9c111 --out-dir /home/pi/deno/target/debug/build/serde_json-d3fad67eb0e9c111 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: 11 warnings emitted
Compiling slab v0.4.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=slab CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>' CARGO_PKG_DESCRIPTION='Pre-allocated storage for a uniform data type' CARGO_PKG_HOMEPAGE='https://github.com/carllerche/slab' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=slab CARGO_PKG_REPOSITORY='https://github.com/carllerche/slab' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name slab /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0c4e8517bcd1e211 -C extra-filename=-0c4e8517bcd1e211 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling byteorder v1.3.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' 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_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_VERSION=1.3.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=0a8286e9c971477a -C extra-filename=-0a8286e9c971477a --out-dir /home/pi/deno/target/debug/build/byteorder-0a8286e9c971477a -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling futures-core v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='The core traits and types in for the `futures` library.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-core CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_core --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-core-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=c78d66d41530c5ee -C extra-filename=-c78d66d41530c5ee --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling pin-project-internal v0.4.23
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-0.4.23 CARGO_PKG_AUTHORS='Taiki Endo <te316e89@gmail.com>' CARGO_PKG_DESCRIPTION='An internal crate to support pin_project - do not use directly
' CARGO_PKG_HOMEPAGE='https://github.com/taiki-e/pin-project' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-internal CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project' CARGO_PKG_VERSION=0.4.23 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=23 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-0.4.23/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7dfdb414c6137910 -C extra-filename=-7dfdb414c6137910 --out-dir /home/pi/deno/target/debug/build/pin-project-internal-7dfdb414c6137910 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling regex-syntax v0.6.18
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=regex_syntax CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A regular expression parser.' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex-syntax CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_VERSION=0.6.18 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=18 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name regex_syntax /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.18/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --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"' -C metadata=3ed7665b7abd6605 -C extra-filename=-3ed7665b7abd6605 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling bytes v0.5.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=bytes CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='Types and traits for working with bytes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bytes CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/bytes' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name bytes --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bytes-0.5.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=4b5e7af4ccbf8647 -C extra-filename=-4b5e7af4ccbf8647 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling siphasher v0.3.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=siphasher CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.3 CARGO_PKG_AUTHORS='Frank Denis <github@pureftpd.org>' CARGO_PKG_DESCRIPTION='SipHash-2-4, SipHash-1-3 and 128-bit variants in pure Rust' CARGO_PKG_HOMEPAGE='https://docs.rs/siphasher' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=siphasher CARGO_PKG_REPOSITORY='https://github.com/jedisct1/rust-siphash' CARGO_PKG_VERSION=0.3.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name siphasher /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/siphasher-0.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=7769b80b54a32c13 -C extra-filename=-7769b80b54a32c13 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling proc-macro-nested v0.1.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-nested-0.1.6 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Support for nested proc-macro-hack invocations' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-nested CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro-hack' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-nested-0.1.6/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=830a4090739653da -C extra-filename=-830a4090739653da --out-dir /home/pi/deno/target/debug/build/proc-macro-nested-830a4090739653da -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling futures-sink v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_sink CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='The asynchronous `Sink` trait for the futures-rs library.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-sink CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_sink --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-sink-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=bf91bc8415e1de36 -C extra-filename=-bf91bc8415e1de36 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling cc v1.0.59
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=cc CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.59 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A build-time dependency for Cargo build scripts to assist in invoking the native
C compiler to compile native C code into a static archive to be linked into Rust
code.
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/cc-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cc CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/cc-rs' CARGO_PKG_VERSION=1.0.59 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=59 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name cc --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cc-1.0.59/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=28f8a5405f842489 -C extra-filename=-28f8a5405f842489 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling futures-io v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_io CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='The `AsyncRead`, `AsyncWrite`, `AsyncSeek`, and `AsyncBufRead` traits for the futures-rs library.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-io CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_io --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-io-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=d171e1b53820a463 -C extra-filename=-d171e1b53820a463 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling pin-utils v0.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pin_utils CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0 CARGO_PKG_AUTHORS='Josef Brandl <mail@josefbrandl.de>' CARGO_PKG_DESCRIPTION='Utilities for pinning
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-utils CARGO_PKG_REPOSITORY='https://github.com/rust-lang-nursery/pin-utils' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name pin_utils --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-utils-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=ba5ab5ed6a603e69 -C extra-filename=-ba5ab5ed6a603e69 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling ident_case v1.0.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ident_case CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1 CARGO_PKG_AUTHORS='Ted Driggs <ted.driggs@outlook.com>' CARGO_PKG_DESCRIPTION='Utility for applying case rules to Rust identifiers.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ident_case CARGO_PKG_REPOSITORY='https://github.com/TedDriggs/ident_case' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ident_case /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0019eb4f212ef142 -C extra-filename=-0019eb4f212ef142 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: use of deprecated trait `std::ascii::AsciiExt`: use inherent methods instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1/src/lib.rs:25:5
|
25 | use std::ascii::AsciiExt;
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: unused import: `std::ascii::AsciiExt`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1/src/lib.rs:25:5
|
25 | use std::ascii::AsciiExt;
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: 2 warnings emitted
Compiling strsim v0.9.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=strsim CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.9.3 CARGO_PKG_AUTHORS='Danny Guo <dannyguo91@gmail.com>' CARGO_PKG_DESCRIPTION='Implementations of string similarity metrics.
Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, and Jaro-Winkler.
' CARGO_PKG_HOMEPAGE='https://github.com/dguo/strsim-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=strsim CARGO_PKG_REPOSITORY='https://github.com/dguo/strsim-rs' CARGO_PKG_VERSION=0.9.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name strsim /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.9.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=4a8b5e48b2b82b9b -C extra-filename=-4a8b5e48b2b82b9b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling scoped-tls v1.0.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=scoped_tls CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/scoped-tls-1.0.0 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Library implementation of the standard library'\''s old `scoped_thread_local'\!'`
macro for providing scoped access to thread local storage (TLS) so any type can
be stored into TLS.
' 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_REPOSITORY='https://github.com/alexcrichton/scoped-tls' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name scoped_tls /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/scoped-tls-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=db4089e3ec2030d9 -C extra-filename=-db4089e3ec2030d9 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling unicode-width v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_width CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8 CARGO_PKG_AUTHORS='kwantam <kwantam@gmail.com>:Manish Goregaokar <manishsmail@gmail.com>' CARGO_PKG_DESCRIPTION='Determine displayed width of `char` and `str` types
according to Unicode Standard Annex #11 rules.
' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-width' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-width CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-width' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_width /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=fbbe897f9c536b45 -C extra-filename=-fbbe897f9c536b45 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling typenum v1.12.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_main CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.12.0 CARGO_PKG_AUTHORS='Paho Lurie-Gregg <paho@paholg.com>:Andre Bogus <bogusandre@gmail.com>' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_VERSION=1.12.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_main /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.12.0/build/main.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=861162ea45669411 -C extra-filename=-861162ea45669411 --out-dir /home/pi/deno/target/debug/build/typenum-861162ea45669411 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling arc-swap v0.4.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=arc_swap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/arc-swap-0.4.7 CARGO_PKG_AUTHORS='Michal '\''vorner'\'' Vaner <vorner@vorner.cz>' CARGO_PKG_DESCRIPTION='Atomically swappable Arc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=arc-swap CARGO_PKG_REPOSITORY='https://github.com/vorner/arc-swap' CARGO_PKG_VERSION=0.4.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name arc_swap /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/arc-swap-0.4.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=998d691e37b19e7f -C extra-filename=-998d691e37b19e7f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling pin-project-lite v0.1.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pin_project_lite CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.7 CARGO_PKG_AUTHORS='Taiki Endo <te316e89@gmail.com>' CARGO_PKG_DESCRIPTION='A lightweight version of pin-project written with declarative macros.
' CARGO_PKG_HOMEPAGE='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-lite CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project-lite' CARGO_PKG_VERSION=0.1.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name pin_project_lite --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-lite-0.1.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=439552da17f885db -C extra-filename=-439552da17f885db --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling either v1.6.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=either CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.0 CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='The enum `Either` with variants `Left` and `Right` is a general purpose sum type with two cases.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=either CARGO_PKG_REPOSITORY='https://github.com/bluss/either' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name either /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/either-1.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=49681a293766e0f9 -C extra-filename=-49681a293766e0f9 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling untrusted v0.7.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=untrusted CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1 CARGO_PKG_AUTHORS='Brian Smith <brian@briansmith.org>' CARGO_PKG_DESCRIPTION='Safe, fast, zero-panic, zero-crashing, zero-allocation parsing of untrusted inputs in Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=untrusted CARGO_PKG_REPOSITORY='https://github.com/briansmith/untrusted' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name untrusted --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.1/src/untrusted.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=5e99d33802ca41bc -C extra-filename=-5e99d33802ca41bc --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling stable_deref_trait v1.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=stable_deref_trait CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0 CARGO_PKG_AUTHORS='Robert Grosse <n210241048576@gmail.com>' CARGO_PKG_DESCRIPTION='An unsafe marker trait for types like Box and Rc that dereference to a stable address even when moved, and hence can be used with libraries such as owning_ref and rental.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=stable_deref_trait CARGO_PKG_REPOSITORY='https://github.com/storyyeller/stable_deref_trait' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name stable_deref_trait /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=3818a7b4db220a81 -C extra-filename=-3818a7b4db220a81 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling spin v0.5.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=spin CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2 CARGO_PKG_AUTHORS='Mathijs van de Nes <git@mathijs.vd-nes.nl>:John Ericson <git@JohnEricson.me>' CARGO_PKG_DESCRIPTION='Synchronization primitives based on spinning.
They may contain data, are usable without `std`,
and static initializers are available.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=spin CARGO_PKG_REPOSITORY='https://github.com/mvdnes/spin-rs.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name spin /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=3209d78048a47363 -C extra-filename=-3209d78048a47363 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling httparse v1.3.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A tiny, safe, speedy, zero-copy HTTP/1.x parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=httparse CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/httparse' CARGO_PKG_VERSION=1.3.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=d2b5efc34944758b -C extra-filename=-d2b5efc34944758b --out-dir /home/pi/deno/target/debug/build/httparse-d2b5efc34944758b -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:138:21
|
138 | let major = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:147:21
|
147 | let minor = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:156:21
|
156 | let patch = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
Compiling base64 v0.11.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=base64 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.11.0 CARGO_PKG_AUTHORS='Alice Maz <alice@alicemaz.com>:Marshall Pierce <marshall@mpierce.org>' CARGO_PKG_DESCRIPTION='encodes and decodes base64 as bytes or utf8' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=base64 CARGO_PKG_REPOSITORY='https://github.com/marshallpierce/rust-base64' CARGO_PKG_VERSION=0.11.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name base64 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.11.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=89d107c6e4fe3ff2 -C extra-filename=-89d107c6e4fe3ff2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling precomputed-hash v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=precomputed_hash CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1 CARGO_PKG_AUTHORS='Emilio Cobos Álvarez <emilio@crisal.io>' CARGO_PKG_DESCRIPTION='A library intending to be a base dependency to expose a precomputed hash' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=precomputed-hash CARGO_PKG_REPOSITORY='https://github.com/emilio/precomputed-hash' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name precomputed_hash /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/precomputed-hash-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=86cb4542a18f30e4 -C extra-filename=-86cb4542a18f30e4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling if_chain v1.0.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=if_chain CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/if_chain-1.0.0 CARGO_PKG_AUTHORS='Chris Wong <lambda.fairy@gmail.com>' CARGO_PKG_DESCRIPTION='Macro for writing nested `if let` expressions.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=if_chain CARGO_PKG_REPOSITORY='https://github.com/lfairy/if_chain' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name if_chain /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/if_chain-1.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=8cc4989a57bb1742 -C extra-filename=-8cc4989a57bb1742 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling new_debug_unreachable v1.0.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=debug_unreachable CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4 CARGO_PKG_AUTHORS='Matt Brubeck <mbrubeck@limpet.net>:Jonathan Reem <jonathan.reem@gmail.com>' CARGO_PKG_DESCRIPTION='panic in debug, intrinsics::unreachable() in release (fork of debug_unreachable)' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=new_debug_unreachable CARGO_PKG_REPOSITORY='https://github.com/mbrubeck/rust-debug-unreachable' CARGO_PKG_VERSION=1.0.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name debug_unreachable --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/new_debug_unreachable-1.0.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=93f6a6d70310f2d5 -C extra-filename=-93f6a6d70310f2d5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling base64 v0.12.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=base64 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.12.3 CARGO_PKG_AUTHORS='Alice Maz <alice@alicemaz.com>:Marshall Pierce <marshall@mpierce.org>' CARGO_PKG_DESCRIPTION='encodes and decodes base64 as bytes or utf8' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=base64 CARGO_PKG_REPOSITORY='https://github.com/marshallpierce/rust-base64' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name base64 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/base64-0.12.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=524f7420c94cbb9e -C extra-filename=-524f7420c94cbb9e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling autocfg v0.1.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=autocfg CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7 CARGO_PKG_AUTHORS='Josh Stone <cuviper@gmail.com>' CARGO_PKG_DESCRIPTION='Automatic cfg for Rust compiler features' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=autocfg CARGO_PKG_REPOSITORY='https://github.com/cuviper/autocfg' CARGO_PKG_VERSION=0.1.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name autocfg /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/autocfg-0.1.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6a5bbd19e854ddb5 -C extra-filename=-6a5bbd19e854ddb5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling rand_core v0.4.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_core' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_core /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="std"' -C metadata=ce047d2d5f752996 -C extra-filename=-ce047d2d5f752996 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:95:23
|
95 | cause: Option<Box<stdError + Send + Sync>>,
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:120:27
|
120 | where E: Into<Box<stdError + Send + Sync>>
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:137:48
|
137 | pub fn take_cause(&mut self) -> Option<Box<stdError + Send + Sync>> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:160:32
|
160 | fn cause(&self) -> Option<&stdError> {
| ^^^^^^^^ help: use `dyn`: `dyn stdError`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:161:52
|
161 | self.cause.as_ref().map(|e| e.as_ref() as &stdError)
| ^^^^^^^^ help: use `dyn`: `dyn stdError`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs:422:24
|
422 | impl std::io::Read for RngCore {
| ^^^^^^^ help: use `dyn`: `dyn RngCore`
warning: 3 warnings emitted
Compiling smallvec v1.4.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=smallvec CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2 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/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=smallvec CARGO_PKG_REPOSITORY='https://github.com/servo/rust-smallvec' CARGO_PKG_VERSION=1.4.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name smallvec --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/smallvec-1.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=32f283be70e3671d -C extra-filename=-32f283be70e3671d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: 6 warnings emitted
Compiling try-lock v0.2.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=try_lock CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A lightweight atomic lock.' CARGO_PKG_HOMEPAGE='https://github.com/seanmonstar/try-lock' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=try-lock CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/try-lock' CARGO_PKG_VERSION=0.2.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name try_lock /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=eaaa2b9d3be8d724 -C extra-filename=-eaaa2b9d3be8d724 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling mime v0.3.16
Compiling lexical-core v0.7.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=mime CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='Strongly Typed Mimes' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mime CARGO_PKG_REPOSITORY='https://github.com/hyperium/mime' CARGO_PKG_VERSION=0.3.16 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=16 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name mime /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime-0.3.16/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=290184f10e4f7c13 -C extra-filename=-290184f10e4f7c13 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4 CARGO_PKG_AUTHORS='Alex Huszagh <ahuszagh@gmail.com>' CARGO_PKG_DESCRIPTION='Lexical, to- and from-string conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lexical-core CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core' CARGO_PKG_VERSION=0.7.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="arrayvec"' --cfg 'feature="correct"' --cfg 'feature="default"' --cfg 'feature="ryu"' --cfg 'feature="static_assertions"' --cfg 'feature="std"' --cfg 'feature="table"' -C metadata=cc0dafc60854e716 -C extra-filename=-cc0dafc60854e716 --out-dir /home/pi/deno/target/debug/build/lexical-core-cc0dafc60854e716 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling cargo_gn v0.0.15
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=cargo_gn CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo_gn-0.0.15 CARGO_PKG_AUTHORS='Ryan Dahl <ry@tinyclouds.org>' CARGO_PKG_DESCRIPTION='Cargo integration with the GN build system' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=cargo_gn CARGO_PKG_REPOSITORY='https://github.com/denoland/cargo_gn' CARGO_PKG_VERSION=0.0.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name cargo_gn --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo_gn-0.0.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0bc45b40412dc090 -C extra-filename=-0bc45b40412dc090 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling tower-service v0.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tower_service CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.0 CARGO_PKG_AUTHORS='Tower Maintainers <team@tower-rs.com>' CARGO_PKG_DESCRIPTION='Trait representing an asynchronous, request / response based, client or server.
' CARGO_PKG_HOMEPAGE='https://github.com/tower-rs/tower' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tower-service CARGO_PKG_REPOSITORY='https://github.com/tower-rs/tower' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tower_service --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tower-service-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=da5fd2ce7c0a0f39 -C extra-filename=-da5fd2ce7c0a0f39 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling arrayvec v0.5.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=arrayvec CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1 CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='A vector with fixed capacity, backed by an array (it can be stored on the stack too). Implements fixed capacity ArrayVec and ArrayString.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=arrayvec CARGO_PKG_REPOSITORY='https://github.com/bluss/arrayvec' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name arrayvec --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.5.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="array-sizes-33-128"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=0e5ed53ea7cac6d2 -C extra-filename=-0e5ed53ea7cac6d2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling dtoa v0.4.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dtoa CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.6 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Fast functions for printing floating-point primitives to an io::Write' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dtoa CARGO_PKG_REPOSITORY='https://github.com/dtolnay/dtoa' CARGO_PKG_VERSION=0.4.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dtoa /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7042129fab6907fb -C extra-filename=-7042129fab6907fb --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling static_assertions v1.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=static_assertions CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0 CARGO_PKG_AUTHORS='Nikolai Vazquez' CARGO_PKG_DESCRIPTION='Compile-time assertions to ensure that invariants are met.' CARGO_PKG_HOMEPAGE='https://github.com/nvzqz/static-assertions-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=static_assertions CARGO_PKG_REPOSITORY='https://github.com/nvzqz/static-assertions-rs' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name static_assertions /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/static_assertions-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=5c859075cc3803c4 -C extra-filename=-5c859075cc3803c4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling crc32fast v1.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.0 CARGO_PKG_AUTHORS='Sam Rijs <srijs@airpost.net>:Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Fast, SIMD-accelerated CRC32 (IEEE) checksum computation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crc32fast CARGO_PKG_REPOSITORY='https://github.com/srijs/rust-crc32fast' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=5a0e856664ff4bc0 -C extra-filename=-5a0e856664ff4bc0 --out-dir /home/pi/deno/target/debug/build/crc32fast-5a0e856664ff4bc0 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling alloc-no-stdlib v2.0.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=alloc_no_stdlib CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1 CARGO_PKG_AUTHORS='Daniel Reiter Horn <danielrh@dropbox.com>' CARGO_PKG_DESCRIPTION='A dynamic allocator that may be used with or without the stdlib. This allows a package with nostd to allocate memory dynamically and be used either with a custom allocator, items on the stack, or by a package that wishes to simply use Box<>. It also provides options to use calloc or a mutable global variable for pre-zeroed memory' CARGO_PKG_HOMEPAGE='https://github.com/dropbox/rust-alloc-no-stdlib' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=alloc-no-stdlib CARGO_PKG_REPOSITORY='https://github.com/dropbox/rust-alloc-no-stdlib' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name alloc_no_stdlib /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=5eb096fc2bc1bc1a -C extra-filename=-5eb096fc2bc1bc1a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling anyhow v1.0.32
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.32 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_VERSION=1.0.32 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.32/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=c70d68195e98bc15 -C extra-filename=-c70d68195e98bc15 --out-dir /home/pi/deno/target/debug/build/anyhow-c70d68195e98bc15 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:66:17
|
66 | / core::mem::replace(&mut self.system_resources.slice_mut()[index],
67 | | farthest_free_list);
| |_______________________________________________________^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:74:13
|
74 | core::mem::replace(&mut self.system_resources.slice_mut()[index], return_to_sender);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:85:13
|
85 | / core::mem::replace(&mut self.system_resources.slice_mut()[self.free_list_start],
86 | | val.mem);
| |________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:93:20
|
93 | / core::mem::replace(&mut self.system_resources.slice_mut()[self.free_list_overflow_count],
94 | | val.mem);
| |_______________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 4 warnings emitted
Compiling adler v0.2.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=adler CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-0.2.3 CARGO_PKG_AUTHORS='Jonas Schievink <jonasschievink@gmail.com>' CARGO_PKG_DESCRIPTION='A simple clean-room implementation of the Adler-32 checksum' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='0BSD OR MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=adler CARGO_PKG_REPOSITORY='https://github.com/jonas-schievink/adler.git' CARGO_PKG_VERSION=0.2.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name adler /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/adler-0.2.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=ae9e7a4571d2564d -C extra-filename=-ae9e7a4571d2564d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling byte-tools v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=byte_tools CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byte-tools-0.3.1 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Bytes related utility functions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=byte-tools CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name byte_tools /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byte-tools-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=368f9afe592117de -C extra-filename=-368f9afe592117de --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling encoding_rs v0.8.24
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24 CARGO_PKG_AUTHORS='Henri Sivonen <hsivonen@hsivonen.fi>' CARGO_PKG_DESCRIPTION='A Gecko-oriented implementation of the Encoding Standard' CARGO_PKG_HOMEPAGE='https://docs.rs/encoding_rs/' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=encoding_rs CARGO_PKG_REPOSITORY='https://github.com/hsivonen/encoding_rs' CARGO_PKG_VERSION=0.8.24 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=24 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=8eefab2b8aad6d42 -C extra-filename=-8eefab2b8aad6d42 --out-dir /home/pi/deno/target/debug/build/encoding_rs-8eefab2b8aad6d42 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling proc-macro2 v0.4.30
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A stable implementation of the upcoming new `proc_macro` API. Comes with an
option, off by default, to also reimplement itself in terms of the upstream
unstable API.
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_VERSION=0.4.30 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=30 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="proc-macro"' -C metadata=d51aa05db5d69328 -C extra-filename=-d51aa05db5d69328 --out-dir /home/pi/deno/target/debug/build/proc-macro2-d51aa05db5d69328 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling quick-error v1.2.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=quick_error CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3 CARGO_PKG_AUTHORS='Paul Colomiets <paul@colomiets.name>:Colin Kiegel <kiegel@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_REPOSITORY='http://github.com/tailhook/quick-error' CARGO_PKG_VERSION=1.2.3 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name quick_error /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quick-error-1.2.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d1b43140215ea0f4 -C extra-filename=-d1b43140215ea0f4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling opaque-debug v0.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=opaque_debug CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Macro for opaque Debug trait implementation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opaque-debug CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name opaque_debug --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=4f7ca6753ce27d56 -C extra-filename=-4f7ca6753ce27d56 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling unicode-xid v0.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_xid CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0 CARGO_PKG_AUTHORS='erick.tryzelaar <erick.tryzelaar@gmail.com>:kwantam <kwantam@gmail.com>' CARGO_PKG_DESCRIPTION='Determine whether characters have the XID_Start
or XID_Continue properties according to
Unicode Standard Annex #31.
' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-xid' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-xid CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-xid' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_xid /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=cd8a08b6a6034e82 -C extra-filename=-cd8a08b6a6034e82 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling retain_mut v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=retain_mut CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/retain_mut-0.1.1 CARGO_PKG_AUTHORS='Xidorn Quan <me@upsuper.org>' CARGO_PKG_DESCRIPTION='Provide retain_mut method that has the same functionality as retain but gives mutable borrow to the predicate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=retain_mut CARGO_PKG_REPOSITORY='https://github.com/upsuper/retain_mut' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name retain_mut /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/retain_mut-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2656059b173d6561 -C extra-filename=-2656059b173d6561 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling opaque-debug v0.2.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=opaque_debug CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.2.3 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Macro for opaque Debug trait implementation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=opaque-debug CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_VERSION=0.2.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name opaque_debug /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/opaque-debug-0.2.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f63b82eb8b7ea336 -C extra-filename=-f63b82eb8b7ea336 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling utf-8 v0.7.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=utf8 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5 CARGO_PKG_AUTHORS='Simon Sapin <simon.sapin@exyr.org>' CARGO_PKG_DESCRIPTION='Incremental, zero-copy UTF-8 decoding with error handling' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=utf-8 CARGO_PKG_REPOSITORY='https://github.com/SimonSapin/rust-utf8' CARGO_PKG_VERSION=0.7.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name utf8 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/utf-8-0.7.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6efe0285ceb79307 -C extra-filename=-6efe0285ceb79307 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling safemem v0.3.3
Compiling remove_dir_all v0.5.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=safemem CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/safemem-0.3.3 CARGO_PKG_AUTHORS='Austin Bonander <austin.bonander@gmail.com>' CARGO_PKG_DESCRIPTION='Safe wrappers for memory-accessing functions, like `std::ptr::copy()`.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=safemem CARGO_PKG_REPOSITORY='https://github.com/abonander/safemem' CARGO_PKG_VERSION=0.3.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name safemem /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/safemem-0.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=6b0f2f6365ac0996 -C extra-filename=-6b0f2f6365ac0996 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=remove_dir_all CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3 CARGO_PKG_AUTHORS='Aaronepower <theaaronepower@gmail.com>' CARGO_PKG_DESCRIPTION='A safe, reliable implementation of remove_dir_all for Windows' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=remove_dir_all CARGO_PKG_REPOSITORY='https://github.com/XAMPPRocky/remove_dir_all.git' CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name remove_dir_all /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2fd85ec4edc75803 -C extra-filename=-2fd85ec4edc75803 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling fake-simd v0.1.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=fake_simd CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fake-simd-0.1.2 CARGO_PKG_AUTHORS='The Rust-Crypto Project Developers' CARGO_PKG_DESCRIPTION='Crate for mimicking simd crate on stable Rust' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fake-simd CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name fake_simd /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fake-simd-0.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2ac521fdfe82ae4a -C extra-filename=-2ac521fdfe82ae4a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling maybe-uninit v2.0.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/maybe-uninit-2.0.0 CARGO_PKG_AUTHORS='est31 <MTest31@outlook.com>:The Rust Project Developers' CARGO_PKG_DESCRIPTION='MaybeUninit for friends of backwards compatibility' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=maybe-uninit CARGO_PKG_REPOSITORY='https://github.com/est31/maybe-uninit' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/maybe-uninit-2.0.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=964970ab2a488882 -C extra-filename=-964970ab2a488882 --out-dir /home/pi/deno/target/debug/build/maybe-uninit-964970ab2a488882 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling ipnet v2.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ipnet CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0 CARGO_PKG_AUTHORS='Kris Price <kris@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_REPOSITORY='https://github.com/krisprice/ipnet' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ipnet /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=4d66df1c1b4cf94b -C extra-filename=-4d66df1c1b4cf94b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling syn v0.15.44
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_VERSION=0.15.44 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=44 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/build.rs --error-format=json --json=diagnostic-rendered-ansi --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="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' -C metadata=bbdd7e81b3d9f288 -C extra-filename=-bbdd7e81b3d9f288 --out-dir /home/pi/deno/target/debug/build/syn-bbdd7e81b3d9f288 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling nix v0.18.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0 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_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_VERSION=0.18.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=18 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=96fcf94fdeb9e5e4 -C extra-filename=-96fcf94fdeb9e5e4 --out-dir /home/pi/deno/target/debug/build/nix-96fcf94fdeb9e5e4 -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/ipnet.rs:116:28
|
116 | fmt.write_str(self.description())
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
Compiling urlencoding v1.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=urlencoding CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/urlencoding-1.1.1 CARGO_PKG_AUTHORS='Bertram Truong <b@bertramtruong.com>:Kornel <kornel@geekhood.net>' CARGO_PKG_DESCRIPTION='A Rust library for doing URL percentage encoding.' CARGO_PKG_HOMEPAGE='https://lib.rs/urlencoding' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=urlencoding CARGO_PKG_REPOSITORY='https://github.com/kornelski/rust_urlencoding' CARGO_PKG_VERSION=1.1.1 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name urlencoding --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/urlencoding-1.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=24591a20d2a7b828 -C extra-filename=-24591a20d2a7b828 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/parser.rs:341:28
|
341 | fmt.write_str(self.description())
| ^^^^^^^^^^^
Compiling same-file v1.0.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=same_file CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='A simple crate for determining whether two file paths point to the same file.
' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/same-file' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=same-file CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/same-file' CARGO_PKG_VERSION=1.0.6 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name same_file --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/same-file-1.0.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=261de6262f5cb27f -C extra-filename=-261de6262f5cb27f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling termcolor v1.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=termcolor CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='A simple cross platform library for writing colored text to a terminal.
' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/termcolor' CARGO_PKG_LICENSE='Unlicense OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=termcolor CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/termcolor' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name termcolor --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/termcolor-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=30dbf8356cc61a69 -C extra-filename=-30dbf8356cc61a69 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling lazycell v1.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=lazycell CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>:Nikita Pekin <contact@nikitapek.in>' CARGO_PKG_DESCRIPTION='A library providing a lazily filled Cell struct' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lazycell CARGO_PKG_REPOSITORY='https://github.com/indiv0/lazycell' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name lazycell /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lazycell-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=b8e13b8dbe7b7443 -C extra-filename=-b8e13b8dbe7b7443 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling strsim v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=strsim CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0 CARGO_PKG_AUTHORS='Danny Guo <dannyguo91@gmail.com>' CARGO_PKG_DESCRIPTION='Implementations of string similarity metrics.
Includes Hamming, Levenshtein, OSA, Damerau-Levenshtein, Jaro, and Jaro-Winkler.
' CARGO_PKG_HOMEPAGE='https://github.com/dguo/strsim-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=strsim CARGO_PKG_REPOSITORY='https://github.com/dguo/strsim-rs' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name strsim /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=5eb0c166fd3a63cb -C extra-filename=-5eb0c166fd3a63cb --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling ansi_term v0.11.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ansi_term CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0 CARGO_PKG_AUTHORS='ogham@bsago.me:Ryan Scheel (Havvy) <ryan.havvy@gmail.com>:Josh Triplett <josh@joshtriplett.org>' CARGO_PKG_DESCRIPTION='Library for ANSI terminal colours and styles (bold, underline)' CARGO_PKG_HOMEPAGE='https://github.com/ogham/rust-ansi-term' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ansi_term CARGO_PKG_REPOSITORY='' CARGO_PKG_VERSION=0.11.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ansi_term /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=9999ea502bc00d33 -C extra-filename=-9999ea502bc00d33 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:171:21
|
171 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:183:29
|
183 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:187:29
|
187 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:200:21
|
200 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:184:21
|
184 | let w: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:193:21
|
193 | let w: &mut io::Write = w;
| ^^^^^^^^^ help: use `dyn`: `dyn io::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:212:21
|
212 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:222:21
|
222 | let w: &mut io::Write = w;
| ^^^^^^^^^ help: use `dyn`: `dyn io::Write`
warning: associated type `wstr` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:6:10
|
6 | type wstr: ?Sized;
| ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Wstr`
|
= note: `#[warn(non_camel_case_types)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:15:23
|
15 | impl<'a> AnyWrite for fmt::Write + 'a {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write + 'a`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:29:23
|
29 | impl<'a> AnyWrite for io::Write + 'a {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn io::Write + 'a`
warning: 11 warnings emitted
Compiling utf8parse v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=utf8parse CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.0 CARGO_PKG_AUTHORS='Joe Wilm <joe@jwilm.com>:Christian Duerr <contact@christianduerr.com>' CARGO_PKG_DESCRIPTION='Table-driven UTF-8 parser' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=utf8parse CARGO_PKG_REPOSITORY='https://github.com/jwilm/vte' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name utf8parse --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=501eca5af2b9d42a -C extra-filename=-501eca5af2b9d42a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling unicode-segmentation v1.6.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_segmentation CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0 CARGO_PKG_AUTHORS='kwantam <kwantam@gmail.com>:Manish Goregaokar <manishsmail@gmail.com>' CARGO_PKG_DESCRIPTION='This crate provides Grapheme Cluster, Word and Sentence boundaries
according to Unicode Standard Annex #29 rules.
' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-segmentation' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-segmentation CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-segmentation' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_segmentation /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0eb7ef3dc88bb3d6 -C extra-filename=-0eb7ef3dc88bb3d6 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:33:17
|
33 | 'a' ... 'z' | 'A' ... 'Z' => true,
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:33:31
|
33 | 'a' ... 'z' | 'A' ... 'Z' => true,
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:42:17
|
42 | '0' ... '9' => true,
| ^^^ help: use `..=` for an inclusive range
Compiling vec_map v0.8.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=vec_map CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>:Jorge Aparicio <japaricious@gmail.com>:Alexis Beingessner <a.beingessner@gmail.com>:Brian Anderson <>:tbu- <>:Manish Goregaokar <>:Aaron Turon <aturon@mozilla.com>:Adolfo Ochagavía <>:Niko Matsakis <>:Steven Fackler <>:Chase Southwood <csouth3@illinois.edu>:Eduard Burtescu <>:Florian Wilkens <>:Félix Raimundo <>:Tibor Benke <>:Markus Siemens <markus@m-siemens.de>:Josh Branchaud <jbranchaud@gmail.com>:Huon Wilson <dbau.pp@gmail.com>:Corey Farwell <coref@rwell.org>:Aaron Liblong <>:Nick Cameron <nrc@ncameron.org>:Patrick Walton <pcwalton@mimiga.net>:Felix S Klock II <>:Andrew Paseltiner <apaseltiner@gmail.com>:Sean McArthur <sean.monstar@gmail.com>:Vadim Petrochenkov <>' CARGO_PKG_DESCRIPTION='A simple map based on a vector for small integer keys' CARGO_PKG_HOMEPAGE='https://github.com/contain-rs/vec-map' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=vec_map CARGO_PKG_REPOSITORY='https://github.com/contain-rs/vec-map' CARGO_PKG_VERSION=0.8.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name vec_map /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=122ddc762560ff43 -C extra-filename=-122ddc762560ff43 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1010:34
|
1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) }
| ^^^^^^^ help: remove these parentheses
|
= note: `#[warn(unused_parens)]` on by default
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1017:39
|
1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) }
| ^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1023:34
|
1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) }
| ^^^^^^^^^^^ help: remove these parentheses
Compiling anymap v0.12.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=anymap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1 CARGO_PKG_AUTHORS='Chris Morgan <me@chrismorgan.info>' CARGO_PKG_DESCRIPTION='A safe and convenient store for one value of each type' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anymap CARGO_PKG_REPOSITORY='https://github.com/chris-morgan/anymap' CARGO_PKG_VERSION=0.12.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name anymap /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=4d72568359c682ba -C extra-filename=-4d72568359c682ba --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:54:9
|
54 | /// A type to emulate dynamic typing with cloning.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= note: `#[warn(unused_doc_comments)]` on by default
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:55:9
|
55 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:56:9
|
56 | /// Every type with no non-`'static` references that implements `Clone` implements `Any`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:60:9
|
60 | /// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:61:9
|
61 | /// more details on `Any` in general.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:62:9
|
62 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:63:9
|
63 | /// This trait is not `std::any::Any` but rather a type extending that for this library’s
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:64:9
|
64 | /// purposes so that it can be combined with marker traits like
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:65:9
|
65 | /// <code><a class=trait title=core::marker::Send
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:66:9
|
66 | /// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:67:9
|
67 | /// <code><a class=trait title=core::marker::Sync
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:68:9
|
68 | /// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:69:9
|
69 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:48:9
|
48 | /// A type to emulate dynamic typing.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:49:9
|
49 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:50:9
|
50 | /// Every type with no non-`'static` references implements `Any`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:60:9
|
60 | /// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:61:9
|
61 | /// more details on `Any` in general.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:62:9
|
62 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:63:9
|
63 | /// This trait is not `std::any::Any` but rather a type extending that for this library’s
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:64:9
|
64 | /// purposes so that it can be combined with marker traits like
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:65:9
|
65 | /// <code><a class=trait title=core::marker::Send
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:66:9
|
66 | /// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:67:9
|
67 | /// <code><a class=trait title=core::marker::Sync
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:68:9
|
68 | /// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:69:9
|
69 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:12:35
|
12 | fn clone_to_any(&self) -> Box<CloneAny>;
| ^^^^^^^^ help: use `dyn`: `dyn CloneAny`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:15:40
|
15 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:18:40
|
18 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:21:45
|
21 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:26:35
|
26 | fn clone_to_any(&self) -> Box<CloneAny> {
| ^^^^^^^^ help: use `dyn`: `dyn CloneAny`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:31:40
|
31 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:36:40
|
36 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:41:45
|
41 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
149 | implement!(CloneAny,);
| ---------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
149 | implement!(CloneAny,);
| ---------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^ help: use `dyn`: `dyn $base`
...
149 | implement!(CloneAny,);
| ---------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^ help: use `dyn`: `dyn $base`
...
149 | implement!(CloneAny,);
| ---------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
150 | implement!(CloneAny, + Send);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
150 | implement!(CloneAny, + Send);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
150 | implement!(CloneAny, + Send);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
150 | implement!(CloneAny, + Send);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
151 | implement!(CloneAny, + Sync);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
151 | implement!(CloneAny, + Sync);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
151 | implement!(CloneAny, + Sync);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
151 | implement!(CloneAny, + Sync);
| ----------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
152 | implement!(CloneAny, + Send + Sync);
| ------------------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
152 | implement!(CloneAny, + Send + Sync);
| ------------------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
152 | implement!(CloneAny, + Send + Sync);
| ------------------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
152 | implement!(CloneAny, + Send + Sync);
| ------------------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:155:13
|
155 | impl_clone!(CloneAny, clone_to_any);
| ^^^^^^^^ help: use `dyn`: `dyn CloneAny`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:156:14
|
156 | impl_clone!((CloneAny + Send), clone_to_any_send);
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:157:14
|
157 | impl_clone!((CloneAny + Sync), clone_to_any_sync);
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:158:14
|
158 | impl_clone!((CloneAny + Send + Sync), clone_to_any_send_sync);
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/raw.rs:59:49
|
59 | pub struct RawMap<A: ?Sized + UncheckedAnyExt = Any> {
| ^^^ help: use `dyn`: `dyn Any`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/lib.rs:120:46
|
120 | pub struct Map<A: ?Sized + UncheckedAnyExt = Any> {
| ^^^ help: use `dyn`: `dyn Any`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/lib.rs:139:23
|
139 | pub type AnyMap = Map<Any>;
| ^^^ help: use `dyn`: `dyn Any`
warning: the trait `any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:15:8
|
10 | pub trait CloneToAny {
| ---------- this trait cannot be made into an object...
...
15 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
| ^^^^^^^^^^^^^^^^^ ...because method `clone_to_any_send` references the `Self` type in its `where` clause
|
= note: `#[warn(where_clauses_object_safety)]` on by default
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
= help: consider moving `clone_to_any_send` to another trait
warning: the trait `any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:18:8
|
10 | pub trait CloneToAny {
| ---------- this trait cannot be made into an object...
...
18 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
| ^^^^^^^^^^^^^^^^^ ...because method `clone_to_any_sync` references the `Self` type in its `where` clause
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
= help: consider moving `clone_to_any_sync` to another trait
warning: the trait `any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:21:8
|
10 | pub trait CloneToAny {
| ---------- this trait cannot be made into an object...
...
21 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
| ^^^^^^^^^^^^^^^^^^^^^^ ...because method `clone_to_any_send_sync` references the `Self` type in its `where` clause
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
= help: consider moving `clone_to_any_send_sync` to another trait
warning: 2 warnings emitted
Compiling dissimilar v1.0.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dissimilar CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dissimilar-1.0.2 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Diff library with semantic cleanup, based on Google'\''s diff-match-patch' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dissimilar CARGO_PKG_REPOSITORY='https://github.com/dtolnay/dissimilar' CARGO_PKG_VERSION=1.0.2 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dissimilar --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dissimilar-1.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=02552b5c866f085b -C extra-filename=-02552b5c866f085b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: 3 warnings emitted
Compiling jsonc-parser v0.14.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=jsonc_parser CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonc-parser-0.14.0 CARGO_PKG_AUTHORS='David Sherret <dsherret@gmail.com>' CARGO_PKG_DESCRIPTION='JSONC parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=jsonc-parser CARGO_PKG_REPOSITORY='https://github.com/dsherret/jsonc-parser' CARGO_PKG_VERSION=0.14.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name jsonc_parser --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/jsonc-parser-0.14.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=37e6f0790d1f2cd8 -C extra-filename=-37e6f0790d1f2cd8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: 76 warnings emitted
Compiling semver-parser v0.9.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=semver_parser CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0 CARGO_PKG_AUTHORS='Steve Klabnik <steve@steveklabnik.com>' CARGO_PKG_DESCRIPTION='Parsing of the semver spec.
' CARGO_PKG_HOMEPAGE='https://github.com/steveklabnik/semver-parser' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=semver-parser CARGO_PKG_REPOSITORY='https://github.com/steveklabnik/semver-parser' CARGO_PKG_VERSION=0.9.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name semver_parser /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d316a9c09ac86fb2 -C extra-filename=-d316a9c09ac86fb2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:156:9
|
156 | try!(write!(f, "{}.{}.{}", self.major, self.minor, self.patch));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:159:13
|
159 | try!(write!(f, "-{}", strs.join(".")));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:163:13
|
163 | try!(write!(f, "+{}", strs.join(".")));
| ^^^
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:47
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:59
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:71
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:24
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:36
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:48
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: 3 warnings emitted
Running `/home/pi/deno/target/debug/build/libc-d888e6551c3ceea9/build-script-build`
[libc 0.2.77] cargo:rustc-cfg=freebsd11
[libc 0.2.77] cargo:rustc-cfg=libc_priv_mod_use
[libc 0.2.77] cargo:rustc-cfg=libc_union
[libc 0.2.77] cargo:rustc-cfg=libc_const_size_of
[libc 0.2.77] cargo:rustc-cfg=libc_align
[libc 0.2.77] cargo:rustc-cfg=libc_core_cvoid
[libc 0.2.77] cargo:rustc-cfg=libc_packedN
[libc 0.2.77] cargo:rustc-cfg=libc_cfg_target_vendor
Running `/home/pi/deno/target/debug/build/syn-c92631d804cd03ac/build-script-build`
[syn 1.0.41] cargo:rustc-cfg=syn_disable_nightly_tests
Running `/home/pi/deno/target/debug/build/proc-macro2-ee672a384601fb55/build-script-build`
[proc-macro2 1.0.21] cargo:rerun-if-changed=build.rs
[proc-macro2 1.0.21] cargo:rustc-cfg=hygiene
[proc-macro2 1.0.21] cargo:rustc-cfg=use_proc_macro
[proc-macro2 1.0.21] cargo:rustc-cfg=wrap_proc_macro
Compiling thread_local v1.0.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=thread_local CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1 CARGO_PKG_AUTHORS='Amanieu d'\''Antras <amanieu@gmail.com>' CARGO_PKG_DESCRIPTION='Per-object thread-local storage' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=thread_local CARGO_PKG_REPOSITORY='https://github.com/Amanieu/thread_local-rs' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name thread_local /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thread_local-1.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2621e64df45310aa -C extra-filename=-2621e64df45310aa --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --cap-lints warn`
Compiling tracing-core v0.1.16
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tracing_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.16 CARGO_PKG_AUTHORS='Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='Core primitives for application-level tracing.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-core CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_VERSION=0.1.16 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=16 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tracing_core --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-core-0.1.16/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="lazy_static"' --cfg 'feature="std"' -C metadata=d5b6986b9ac56974 -C extra-filename=-d5b6986b9ac56974 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/log-494bb93da4044d1c/build-script-build`
[log 0.4.11] cargo:rustc-cfg=atomic_cas
[log 0.4.11] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/memchr-31e3fb544b229019/build-script-build`
[memchr 2.3.3] cargo:rustc-cfg=memchr_runtime_simd
[memchr 2.3.3] cargo:rustc-cfg=memchr_runtime_sse2
[memchr 2.3.3] cargo:rustc-cfg=memchr_runtime_sse42
[memchr 2.3.3] cargo:rustc-cfg=memchr_runtime_avx
Running `/home/pi/deno/target/debug/build/getrandom-8e5cf7dbe64db8fd/build-script-build`
Compiling futures-task v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_task CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Tools for working with tasks.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-task CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_task --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-task-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="once_cell"' --cfg 'feature="std"' -C metadata=b91861f8b74f2755 -C extra-filename=-b91861f8b74f2755 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern once_cell=/home/pi/deno/target/debug/deps/libonce_cell-65477b46ede36c3e.rmeta --cap-lints warn`
warning: 9 warnings emitted
Compiling indexmap v1.6.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.6.0 CARGO_PKG_AUTHORS='bluss:Josh Stone <cuviper@gmail.com>' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.
The indexmap is a hash table where the iteration order of the key-value
pairs is independent of the hash values of the keys. It has the usual
hash table functionality, it preserves insertion order except after
removals, and it allows lookup of its elements by either hash table key
or numerical index. A corresponding hash set type is also provided.
This crate was initially published under the name ordermap, but it was renamed to
indexmap.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_REPOSITORY='https://github.com/bluss/indexmap' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.6.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=4046336010b2dfaa -C extra-filename=-4046336010b2dfaa --out-dir /home/pi/deno/target/debug/build/indexmap-4046336010b2dfaa -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Compiling num-traits v0.2.12
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12 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/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_VERSION=0.2.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=5579b536b373ccfc -C extra-filename=-5579b536b373ccfc --out-dir /home/pi/deno/target/debug/build/num-traits-5579b536b373ccfc -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Compiling num-integer v0.1.43
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.43 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Integer traits and functions' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-integer' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-integer CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-integer' CARGO_PKG_VERSION=0.1.43 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=43 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.43/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=7f403e54e160a79e -C extra-filename=-7f403e54e160a79e --out-dir /home/pi/deno/target/debug/build/num-integer-7f403e54e160a79e -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Compiling num-bigint v0.2.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Big integer implementation for Rust' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-bigint' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-bigint CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-bigint' CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="serde"' --cfg 'feature="std"' -C metadata=193382b6a322d8a5 -C extra-filename=-193382b6a322d8a5 --out-dir /home/pi/deno/target/debug/build/num-bigint-193382b6a322d8a5 -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Compiling miniz_oxide v0.4.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.2 CARGO_PKG_AUTHORS='Frommi <daniil.liferenko@gmail.com>:oyvindln <oyvindln@users.noreply.github.com>' CARGO_PKG_DESCRIPTION='DEFLATE compression and decompression library rewritten in Rust based on miniz' CARGO_PKG_HOMEPAGE='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=miniz_oxide CARGO_PKG_REPOSITORY='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.2/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=235d2e24fd7e7c0b -C extra-filename=-235d2e24fd7e7c0b --out-dir /home/pi/deno/target/debug/build/miniz_oxide-235d2e24fd7e7c0b -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Compiling crossbeam-utils v0.7.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.2 CARGO_PKG_AUTHORS='The Crossbeam Project Developers' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_VERSION=0.7.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.2/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="lazy_static"' --cfg 'feature="std"' -C metadata=7d1e05c4196e3709 -C extra-filename=-7d1e05c4196e3709 --out-dir /home/pi/deno/target/debug/build/crossbeam-utils-7d1e05c4196e3709 -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-498f89fd554adaf6.rlib --cap-lints warn`
Running `/home/pi/deno/target/debug/build/serde_derive-dd4701a010ef3a3e/build-script-build`
[serde_derive 1.0.116] cargo:rustc-cfg=underscore_consts
Compiling unicode-bidi v0.3.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_bidi CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4 CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION='Implementation of the Unicode Bidirectional Algorithm' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT / Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-bidi CARGO_PKG_REPOSITORY='https://github.com/servo/unicode-bidi' CARGO_PKG_VERSION=0.3.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_bidi /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=5b283ab6501ff251 -C extra-filename=-5b283ab6501ff251 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern matches=/home/pi/deno/target/debug/deps/libmatches-21b49b161ff46c1a.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/serde-80d3077ace09e239/build-script-build`
Compiling unicode-normalization v0.1.13
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicode_normalization CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13 CARGO_PKG_AUTHORS='kwantam <kwantam@gmail.com>' CARGO_PKG_DESCRIPTION='This crate provides functions for normalization of
Unicode strings, including Canonical and Compatible
Decomposition and Recomposition, as described in
Unicode Standard Annex #15.
' CARGO_PKG_HOMEPAGE='https://github.com/unicode-rs/unicode-normalization' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicode-normalization CARGO_PKG_REPOSITORY='https://github.com/unicode-rs/unicode-normalization' CARGO_PKG_VERSION=0.1.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name unicode_normalization --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=1184feb7a5267b68 -C extra-filename=-1184feb7a5267b68 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern tinyvec=/home/pi/deno/target/debug/deps/libtinyvec-99577869885929a5.rmeta --cap-lints warn`
[serde 1.0.116] cargo:rustc-cfg=ops_bound
[serde 1.0.116] cargo:rustc-cfg=core_reverse
[serde 1.0.116] cargo:rustc-cfg=de_boxed_c_str
[serde 1.0.116] cargo:rustc-cfg=de_boxed_path
[serde 1.0.116] cargo:rustc-cfg=de_rc_dst
[serde 1.0.116] cargo:rustc-cfg=core_duration
[serde 1.0.116] cargo:rustc-cfg=integer128
[serde 1.0.116] cargo:rustc-cfg=range_inclusive
[serde 1.0.116] cargo:rustc-cfg=num_nonzero
[serde 1.0.116] cargo:rustc-cfg=core_try_from
[serde 1.0.116] cargo:rustc-cfg=num_nonzero_signed
[serde 1.0.116] cargo:rustc-cfg=std_atomic64
[serde 1.0.116] cargo:rustc-cfg=std_atomic
Compiling unicase v2.6.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A case-insensitive wrapper around strings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicase CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/unicase' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f10f7030f04f7e84 -C extra-filename=-f10f7030f04f7e84 --out-dir /home/pi/deno/target/debug/build/unicase-f10f7030f04f7e84 -L dependency=/home/pi/deno/target/debug/deps --extern version_check=/home/pi/deno/target/debug/deps/libversion_check-c87062650e0f7bb5.rlib --cap-lints warn`
Compiling generic-array v0.14.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.4 CARGO_PKG_AUTHORS='Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_VERSION=0.14.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.4/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=757a1d47c5d7aec5 -C extra-filename=-757a1d47c5d7aec5 --out-dir /home/pi/deno/target/debug/build/generic-array-757a1d47c5d7aec5 -L dependency=/home/pi/deno/target/debug/deps --extern version_check=/home/pi/deno/target/debug/deps/libversion_check-c87062650e0f7bb5.rlib --cap-lints warn`
Compiling nom v5.1.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2 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_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_VERSION=5.1.2 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="lexical"' --cfg 'feature="lexical-core"' --cfg 'feature="std"' -C metadata=6bbaded3f720ea41 -C extra-filename=-6bbaded3f720ea41 --out-dir /home/pi/deno/target/debug/build/nom-6bbaded3f720ea41 -L dependency=/home/pi/deno/target/debug/deps --extern version_check=/home/pi/deno/target/debug/deps/libversion_check-c87062650e0f7bb5.rlib --cap-lints warn`
Running `/home/pi/deno/target/debug/build/ryu-ef585719cbf58101/build-script-build`
[ryu 1.0.5] cargo:rustc-cfg=integer128
[ryu 1.0.5] cargo:rustc-cfg=maybe_uninit
Running `/home/pi/deno/target/debug/build/bitflags-639b83869d847136/build-script-build`
[bitflags 1.2.1] cargo:rustc-cfg=bitflags_const_fn
Running `/home/pi/deno/target/debug/build/serde_json-d3fad67eb0e9c111/build-script-build`
[serde_json 1.0.57] cargo:rustc-cfg=limb_width_64
Running `/home/pi/deno/target/debug/build/pin-project-internal-7dfdb414c6137910/build-script-build`
[pin-project-internal 0.4.23] cargo:rustc-cfg=underscore_consts
[pin-project-internal 0.4.23] cargo:rustc-cfg=deprecated_proc_macro
Compiling phf_shared v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=phf_shared CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.8.0 CARGO_PKG_AUTHORS='Steven Fackler <sfackler@gmail.com>' CARGO_PKG_DESCRIPTION='Support code shared by PHF libraries' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=phf_shared CARGO_PKG_REPOSITORY='https://github.com/sfackler/rust-phf' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name phf_shared --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_shared-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=ba80ea98d421f251 -C extra-filename=-ba80ea98d421f251 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern siphasher=/home/pi/deno/target/debug/deps/libsiphasher-7769b80b54a32c13.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/byteorder-0a8286e9c971477a/build-script-build`
[byteorder 1.3.4] cargo:rustc-cfg=byteorder_i128
Compiling futures-channel v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_channel CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' 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_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_channel --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-channel-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="futures-sink"' --cfg 'feature="sink"' --cfg 'feature="std"' -C metadata=258d5cb42061defb -C extra-filename=-258d5cb42061defb --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_sink=/home/pi/deno/target/debug/deps/libfutures_sink-bf91bc8415e1de36.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/proc-macro-nested-830a4090739653da/build-script-build`
[proc-macro-nested 0.1.6] cargo:rerun-if-changed=build.rs
Compiling http v0.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=http CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.1 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>:Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A set of types for representing HTTP requests and responses.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=http CARGO_PKG_REPOSITORY='https://github.com/hyperium/http' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name http --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/http-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6f5bfe4467c01f9c -C extra-filename=-6f5bfe4467c01f9c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern fnv=/home/pi/deno/target/debug/deps/libfnv-ce4aa5efcd7fd8c5.rmeta --extern itoa=/home/pi/deno/target/debug/deps/libitoa-e569e81afa0271ce.rmeta --cap-lints warn`
Compiling input_buffer v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=input_buffer CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/input_buffer-0.3.1 CARGO_PKG_AUTHORS='Alexey Galakhov <agalakhov@snapview.de>' CARGO_PKG_DESCRIPTION='A peekable FIFO-like buffer for receiving network data efficiently' CARGO_PKG_HOMEPAGE='https://github.com/snapview/input_buffer' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=input_buffer CARGO_PKG_REPOSITORY='https://github.com/snapview/input_buffer' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name input_buffer /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/input_buffer-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7a2163e45df85c5f -C extra-filename=-7a2163e45df85c5f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --cap-lints warn`
Compiling textwrap v0.11.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=textwrap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0 CARGO_PKG_AUTHORS='Martin Geisler <martin@geisler.net>' CARGO_PKG_DESCRIPTION='Textwrap is a small library for word wrapping, indenting, and
dedenting strings.
You can use it to format strings (such as help and error messages) for
display in commandline applications. It is designed to be efficient
and handle Unicode characters correctly.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=textwrap CARGO_PKG_REPOSITORY='https://github.com/mgeisler/textwrap' CARGO_PKG_VERSION=0.11.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name textwrap /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=8489c97c914be4fa -C extra-filename=-8489c97c914be4fa --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern unicode_width=/home/pi/deno/target/debug/deps/libunicode_width-fbbe897f9c536b45.rmeta --cap-lints warn`
Compiling owning_ref v0.4.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=owning_ref CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1 CARGO_PKG_AUTHORS='Marvin Löbel <loebel.marvin@gmail.com>' CARGO_PKG_DESCRIPTION='A library for creating references that carry their owner with them.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=owning_ref CARGO_PKG_REPOSITORY='https://github.com/Kimundi/owning-ref-rs' CARGO_PKG_VERSION=0.4.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name owning_ref /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f2da757c9ef63f61 -C extra-filename=-f2da757c9ef63f61 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern stable_deref_trait=/home/pi/deno/target/debug/deps/libstable_deref_trait-3818a7b4db220a81.rmeta --cap-lints warn`
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1/src/lib.rs:1074:28
|
1074 | where O: Send, for<'a> (&'a T): Send {}
| ^^^^^^^ help: remove these parentheses
|
= note: `#[warn(unused_parens)]` on by default
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1/src/lib.rs:1076:28
|
1076 | where O: Sync, for<'a> (&'a T): Sync {}
| ^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1/src/lib.rs:1079:28
|
1079 | where O: Send, for<'a> (&'a mut T): Send {}
| ^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.1/src/lib.rs:1081:28
|
1081 | where O: Sync, for<'a> (&'a mut T): Sync {}
| ^^^^^^^^^^^ help: remove these parentheses
Compiling ring v0.16.15
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15 CARGO_PKG_AUTHORS='Brian Smith <brian@briansmith.org>' CARGO_PKG_DESCRIPTION='Safe, fast, small crypto using Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=ring CARGO_PKG_REPOSITORY='https://github.com/briansmith/ring' CARGO_PKG_VERSION=0.16.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="dev_urandom_fallback"' --cfg 'feature="once_cell"' -C metadata=ab3dd717a1c207de -C extra-filename=-ab3dd717a1c207de --out-dir /home/pi/deno/target/debug/build/ring-ab3dd717a1c207de -L dependency=/home/pi/deno/target/debug/deps --extern cc=/home/pi/deno/target/debug/deps/libcc-28f8a5405f842489.rlib --cap-lints warn`
warning: 4 warnings emitted
Compiling sys-info v0.7.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sys-info-0.7.0 CARGO_PKG_AUTHORS='Siyu Wang <FillZpp.pub@gmail.com>' CARGO_PKG_DESCRIPTION='Get system information in Rust.
For now it supports Linux, Mac OS X, illumos, Solaris, FreeBSD, and Windows.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sys-info CARGO_PKG_REPOSITORY='https://github.com/FillZpp/sys-info-rs' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sys-info-0.7.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d27fbae585295b30 -C extra-filename=-d27fbae585295b30 --out-dir /home/pi/deno/target/debug/build/sys-info-d27fbae585295b30 -L dependency=/home/pi/deno/target/debug/deps --extern cc=/home/pi/deno/target/debug/deps/libcc-28f8a5405f842489.rlib --cap-lints warn`
Running `/home/pi/deno/target/debug/build/typenum-861162ea45669411/build-script-main`
[typenum 1.12.0] cargo:rustc-env=TYPENUM_BUILD_CONSTS=/home/pi/deno/target/debug/build/typenum-228a1494e0918010/out/consts.rs
Running `/home/pi/deno/target/debug/build/httparse-d2b5efc34944758b/build-script-build`
[httparse 1.3.4] cargo:rustc-cfg=httparse_min_2018
[httparse 1.3.4] cargo:rustc-cfg=httparse_simd
[httparse 1.3.4] cargo:warning=CARGO_CFG_TARGET_FEATURE was not set
warning: CARGO_CFG_TARGET_FEATURE was not set
Compiling rand_core v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_core' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_core /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=5e310b0d7db91be2 -C extra-filename=-5e310b0d7db91be2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-ce047d2d5f752996.rmeta --cap-lints warn`
[typenum 1.12.0] cargo:rustc-env=TYPENUM_BUILD_OP=/home/pi/deno/target/debug/build/typenum-228a1494e0918010/out/op.rs
Compiling rand_jitter v0.1.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_jitter CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='Random number generator based on timing jitter' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_jitter CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_jitter /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=44c930d5cf687a04 -C extra-filename=-44c930d5cf687a04 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-ce047d2d5f752996.rmeta --cap-lints warn`
Compiling rand_pcg v0.1.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='Selected PCG random number generators
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_pcg' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_pcg CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=9b895cf06b89458e -C extra-filename=-9b895cf06b89458e --out-dir /home/pi/deno/target/debug/build/rand_pcg-9b895cf06b89458e -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-6a5bbd19e854ddb5.rlib --cap-lints warn`
Compiling rand_chacha v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='ChaCha random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_chacha' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=94f70950fc64093e -C extra-filename=-94f70950fc64093e --out-dir /home/pi/deno/target/debug/build/rand_chacha-94f70950fc64093e -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-6a5bbd19e854ddb5.rlib --cap-lints warn`
Compiling rand v0.6.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.6.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="rand_os"' --cfg 'feature="std"' -C metadata=89f79ead84a8ac84 -C extra-filename=-89f79ead84a8ac84 --out-dir /home/pi/deno/target/debug/build/rand-89f79ead84a8ac84 -L dependency=/home/pi/deno/target/debug/deps --extern autocfg=/home/pi/deno/target/debug/deps/libautocfg-6a5bbd19e854ddb5.rlib --cap-lints warn`
Compiling alloc-stdlib v0.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=alloc_stdlib CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-stdlib-0.2.1 CARGO_PKG_AUTHORS='Daniel Reiter Horn <danielrh@dropbox.com>' CARGO_PKG_DESCRIPTION='A dynamic allocator example that may be used with the stdlib' CARGO_PKG_HOMEPAGE='https://github.com/dropbox/rust-alloc-no-stdlib' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=alloc-stdlib CARGO_PKG_REPOSITORY='https://github.com/dropbox/rust-alloc-no-stdlib' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name alloc_stdlib /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-stdlib-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=86624371302b2caf -C extra-filename=-86624371302b2caf --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern alloc_no_stdlib=/home/pi/deno/target/debug/deps/liballoc_no_stdlib-5eb096fc2bc1bc1a.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/lexical-core-cc0dafc60854e716/build-script-build`
Running `/home/pi/deno/target/debug/build/crc32fast-5a0e856664ff4bc0/build-script-build`
[lexical-core 0.7.4] cargo:rustc-cfg=limb_width_64
Compiling block-padding v0.1.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=block_padding CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.1.5 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Padding and unpadding of messages divided into blocks.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-padding CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_VERSION=0.1.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name block_padding /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-padding-0.1.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d2d99094adf85380 -C extra-filename=-d2d99094adf85380 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern byte_tools=/home/pi/deno/target/debug/deps/libbyte_tools-368f9afe592117de.rmeta --cap-lints warn`
[crc32fast 1.2.0] cargo:rerun-if-changed=build.rs
[crc32fast 1.2.0] cargo:rustc-cfg=crc32fast_stdarchx86
Compiling humantime v1.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=humantime CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0 CARGO_PKG_AUTHORS='Paul Colomiets <paul@colomiets.name>' CARGO_PKG_DESCRIPTION=' A parser and formatter for std::time::{Duration, SystemTime}
' CARGO_PKG_HOMEPAGE='https://github.com/tailhook/humantime' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=humantime CARGO_PKG_REPOSITORY='' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name humantime /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=8756bda4d872577f -C extra-filename=-8756bda4d872577f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern quick_error=/home/pi/deno/target/debug/deps/libquick_error-d1b43140215ea0f4.rmeta --cap-lints warn`
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:109:37
|
109 | "usec" | "us" => (0u64, try!(n.mul(1000))),
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:110:48
|
110 | "millis" | "msec" | "ms" => (0u64, try!(n.mul(1000_000))),
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:113:17
|
113 | => (try!(n.mul(60)), 0),
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:114:55
|
114 | "hours" | "hour" | "hr" | "hrs" | "h" => (try!(n.mul(3600)), 0),
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:115:38
|
115 | "days" | "day" | "d" => (try!(n.mul(86400)), 0),
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:116:40
|
116 | "weeks" | "week" | "w" => (try!(n.mul(86400*7)), 0),
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:117:42
|
117 | "months" | "month" | "M" => (try!(n.mul(2630016)), 0), // 30.44d
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:118:40
|
118 | "years" | "year" | "y" => (try!(n.mul(31557600)), 0), // 365.25d
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:121:24
|
121 | let mut nsec = try!(self.current.1.add(nsec));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:123:19
|
123 | sec = try!(sec.add(nsec / 1000_000_000));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:126:15
|
126 | sec = try!(self.current.0.add(sec));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:132:21
|
132 | let mut n = try!(try!(self.parse_first_char()).ok_or(Error::Empty));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:132:26
|
132 | let mut n = try!(try!(self.parse_first_char()).ok_or(Error::Empty));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:138:29
|
138 | n = try!(n.checked_mul(10)
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:157:25
|
157 | try!(self.parse_unit(n, start, off));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:169:13
|
169 | try!(self.parse_unit(n, start, off));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:170:23
|
170 | n = match try!(self.parse_first_char()) {
| ^^^
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:93:20
|
93 | '0'...'9' => {
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:137:24
|
137 | '0'...'9' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:143:24
|
143 | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:143:36
|
143 | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:156:24
|
156 | '0'...'9' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:162:24
|
162 | 'a'...'z' | 'A'...'Z' => {}
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:162:36
|
162 | 'a'...'z' | 'A'...'Z' => {}
| ^^^ help: use `..=` for an inclusive range
Running `/home/pi/deno/target/debug/build/encoding_rs-8eefab2b8aad6d42/build-script-build`
Running `/home/pi/deno/target/debug/build/anyhow-c70d68195e98bc15/build-script-build`
Running `/home/pi/deno/target/debug/build/proc-macro2-d51aa05db5d69328/build-script-build`
[proc-macro2 0.4.30] cargo:rerun-if-changed=build.rs
[proc-macro2 0.4.30] cargo:rustc-cfg=u128
[proc-macro2 0.4.30] cargo:rustc-cfg=use_proc_macro
[proc-macro2 0.4.30] cargo:rustc-cfg=wrap_proc_macro
Running `/home/pi/deno/target/debug/build/nix-96fcf94fdeb9e5e4/build-script-build`
Running `/home/pi/deno/target/debug/build/maybe-uninit-964970ab2a488882/build-script-build`
Compiling walkdir v2.3.1
[maybe-uninit 2.0.0] cargo:rustc-cfg=derive_copy
[maybe-uninit 2.0.0] cargo:rustc-cfg=repr_transparent
[maybe-uninit 2.0.0] cargo:rustc-cfg=native_uninit
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=walkdir CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.1 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='Recursively walk a directory.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/walkdir' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=walkdir CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/walkdir' CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name walkdir --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/walkdir-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=883b8f963f7f3f24 -C extra-filename=-883b8f963f7f3f24 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern same_file=/home/pi/deno/target/debug/deps/libsame_file-261de6262f5cb27f.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/syn-bbdd7e81b3d9f288/build-script-build`
[syn 0.15.44] cargo:rustc-cfg=syn_can_match_trailing_dollar
[syn 0.15.44] cargo:rustc-cfg=syn_can_use_thread_id
[syn 0.15.44] cargo:rustc-cfg=syn_can_use_associated_constants
[syn 0.15.44] cargo:rustc-cfg=syn_can_call_macro_by_path
[syn 0.15.44] cargo:rustc-cfg=syn_disable_nightly_tests
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=libc CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Raw FFI bindings to platform libraries like libc.
' 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_REPOSITORY='https://github.com/rust-lang/libc' CARGO_PKG_VERSION=0.2.77 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=77 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/libc-f4c2433f3c8a6a05/out rustc --crate-name libc /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/libc-0.2.77/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --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"' -C metadata=bc8a133f2e55690c -C extra-filename=-bc8a133f2e55690c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg freebsd11 --cfg libc_priv_mod_use --cfg libc_union --cfg libc_const_size_of --cfg libc_align --cfg libc_core_cvoid --cfg libc_packedN --cfg libc_cfg_target_vendor`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:48:44
|
48 | display(self_) -> ("{}", self_.description())
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/humantime-1.3.0/src/duration.rs:53:44
|
53 | display(self_) -> ("{}", self_.description())
| ^^^^^^^^^^^
warning: 26 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.21 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>:David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_VERSION=1.0.21 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=21 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/proc-macro2-0e3203c46bd527f8/out rustc --crate-name proc_macro2 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.21/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=3fd3b8378f22e79c -C extra-filename=-3fd3b8378f22e79c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern unicode_xid=/home/pi/deno/target/debug/deps/libunicode_xid-4894bad51f05f12f.rmeta --cap-lints warn --cfg hygiene --cfg use_proc_macro --cfg wrap_proc_macro`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=log CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A lightweight logging facade for Rust
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=log CARGO_PKG_REPOSITORY='https://github.com/rust-lang/log' CARGO_PKG_VERSION=0.4.11 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=11 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/log-a4267e1997f07b8f/out rustc --crate-name log /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/log-0.4.11/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=5a119a68bb15af12 -C extra-filename=-5a119a68bb15af12 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --cap-lints warn --cfg atomic_cas`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=memchr CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>:bluss' CARGO_PKG_DESCRIPTION='Safe interface to memchr.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/rust-memchr' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=memchr CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/rust-memchr' CARGO_PKG_VERSION=2.3.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/memchr-0d5f9697142681f9/out rustc --crate-name memchr /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/memchr-2.3.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="use_std"' -C metadata=88d44ab3a3ad53b8 -C extra-filename=-88d44ab3a3ad53b8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg memchr_runtime_simd --cfg memchr_runtime_sse2 --cfg memchr_runtime_sse42 --cfg memchr_runtime_avx`
Running `/home/pi/deno/target/debug/build/indexmap-4046336010b2dfaa/build-script-build`
[indexmap 1.6.0] cargo:rustc-cfg=has_std
[indexmap 1.6.0] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/num-traits-5579b536b373ccfc/build-script-build`
[num-traits 0.2.12] cargo:rustc-cfg=has_i128
[num-traits 0.2.12] cargo:rustc-cfg=has_to_int_unchecked
[num-traits 0.2.12] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/num-integer-7f403e54e160a79e/build-script-build`
[num-integer 0.1.43] cargo:rustc-cfg=has_i128
[num-integer 0.1.43] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/miniz_oxide-235d2e24fd7e7c0b/build-script-build`
[miniz_oxide 0.4.2] cargo:rustc-cfg=has_alloc
Running `/home/pi/deno/target/debug/build/crossbeam-utils-7d1e05c4196e3709/build-script-build`
[crossbeam-utils 0.7.2] cargo:rustc-cfg=has_min_const_fn
[crossbeam-utils 0.7.2] cargo:rustc-cfg=has_atomic_u8
[crossbeam-utils 0.7.2] cargo:rustc-cfg=has_atomic_u16
[crossbeam-utils 0.7.2] cargo:rustc-cfg=has_atomic_u32
[crossbeam-utils 0.7.2] cargo:rustc-cfg=has_atomic_u64
[crossbeam-utils 0.7.2] error[E0658]: use of unstable library feature 'integer_atomics'
[crossbeam-utils 0.7.2] --> <anon>:1:18
[crossbeam-utils 0.7.2] |
[crossbeam-utils 0.7.2] 1 | pub type Probe = core::sync::atomic::AtomicU128;
[crossbeam-utils 0.7.2] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[crossbeam-utils 0.7.2] |
[crossbeam-utils 0.7.2] = note: see issue #32976 <https://github.com/rust-lang/rust/issues/32976> for more information
[crossbeam-utils 0.7.2]
[crossbeam-utils 0.7.2] error: aborting due to previous error
[crossbeam-utils 0.7.2]
[crossbeam-utils 0.7.2] For more information about this error, try `rustc --explain E0658`.
Running `/home/pi/deno/target/debug/build/num-bigint-193382b6a322d8a5/build-script-build`
[num-bigint 0.2.6] cargo:rustc-cfg=has_i128
[num-bigint 0.2.6] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/unicase-f10f7030f04f7e84/build-script-build`
[unicase 2.6.0] cargo:rustc-cfg=__unicase__iter_cmp
[unicase 2.6.0] cargo:rustc-cfg=__unicase__default_hasher
[unicase 2.6.0] cargo:rustc-cfg=__unicase__const_fns
[unicase 2.6.0] cargo:rustc-cfg=__unicase__core_and_alloc
Running `/home/pi/deno/target/debug/build/generic-array-757a1d47c5d7aec5/build-script-build`
[generic-array 0.14.4] cargo:rustc-cfg=relaxed_coherence
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ryu CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Fast floating point to string conversion' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR BSL-1.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ryu CARGO_PKG_REPOSITORY='https://github.com/dtolnay/ryu' CARGO_PKG_VERSION=1.0.5 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/ryu-c43017d6e189e2e1/out rustc --crate-name ryu --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fbccce0aee0e54ee -C extra-filename=-fbccce0aee0e54ee --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg integer128 --cfg maybe_uninit`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=bitflags CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A macro to generate structures which behave like bitflags.
' CARGO_PKG_HOMEPAGE='https://github.com/bitflags/bitflags' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=bitflags CARGO_PKG_REPOSITORY='https://github.com/bitflags/bitflags' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/bitflags-862e5a16066523e2/out rustc --crate-name bitflags /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/bitflags-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=8697a9bfe9f801d9 -C extra-filename=-8697a9bfe9f801d9 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg bitflags_const_fn`
Running `/home/pi/deno/target/debug/build/nom-6bbaded3f720ea41/build-script-build`
[nom 5.1.2] cargo:rustc-cfg=stable_i128
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=byteorder CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' 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_REPOSITORY='https://github.com/BurntSushi/byteorder' CARGO_PKG_VERSION=1.3.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/byteorder-414307ca84c0ae7d/out rustc --crate-name byteorder /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=3621f46a2321b047 -C extra-filename=-3621f46a2321b047 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg byteorder_i128`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=proc_macro_nested CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-nested-0.1.6 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Support for nested proc-macro-hack invocations' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro-nested CARGO_PKG_REPOSITORY='https://github.com/dtolnay/proc-macro-hack' CARGO_PKG_VERSION=0.1.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/proc-macro-nested-756091f8e8acd1ea/out rustc --crate-name proc_macro_nested /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro-nested-0.1.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=83ed7515435a125c -C extra-filename=-83ed7515435a125c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling idna v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=idna CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0 CARGO_PKG_AUTHORS='The rust-url developers' CARGO_PKG_DESCRIPTION='IDNA (Internationalizing Domain Names in Applications) and Punycode.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=idna CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url/' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name idna /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/idna-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=83d81db6ca794181 -C extra-filename=-83d81db6ca794181 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern matches=/home/pi/deno/target/debug/deps/libmatches-21b49b161ff46c1a.rmeta --extern unicode_bidi=/home/pi/deno/target/debug/deps/libunicode_bidi-5b283ab6501ff251.rmeta --extern unicode_normalization=/home/pi/deno/target/debug/deps/libunicode_normalization-1184feb7a5267b68.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/sys-info-d27fbae585295b30/build-script-build`
[sys-info 0.7.0] TARGET = Some("aarch64-unknown-linux-gnu")
[sys-info 0.7.0] OPT_LEVEL = Some("0")
[sys-info 0.7.0] HOST = Some("aarch64-unknown-linux-gnu")
[sys-info 0.7.0] CC_aarch64-unknown-linux-gnu = None
[sys-info 0.7.0] CC_aarch64_unknown_linux_gnu = None
[sys-info 0.7.0] HOST_CC = None
[sys-info 0.7.0] CC = None
[sys-info 0.7.0] CFLAGS_aarch64-unknown-linux-gnu = None
[sys-info 0.7.0] CFLAGS_aarch64_unknown_linux_gnu = None
[sys-info 0.7.0] HOST_CFLAGS = None
[sys-info 0.7.0] CFLAGS = None
[sys-info 0.7.0] CRATE_CC_NO_DEFAULTS = None
[sys-info 0.7.0] DEBUG = Some("true")
[sys-info 0.7.0] CARGO_CFG_TARGET_FEATURE = None
[sys-info 0.7.0] running: "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-Wall" "-Wextra" "-o" "/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out/c/linux.o" "-c" "c/linux.c"
[sys-info 0.7.0] exit code: 0
[sys-info 0.7.0] AR_aarch64-unknown-linux-gnu = None
[sys-info 0.7.0] AR_aarch64_unknown_linux_gnu = None
[sys-info 0.7.0] HOST_AR = None
[sys-info 0.7.0] AR = None
[sys-info 0.7.0] running: "ar" "crs" "/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out/libinfo.a" "/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out/c/linux.o"
[sys-info 0.7.0] exit code: 0
[sys-info 0.7.0] cargo:rustc-link-lib=static=info
[sys-info 0.7.0] cargo:rustc-link-search=native=/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=httparse CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A tiny, safe, speedy, zero-copy HTTP/1.x parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=httparse CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/httparse' CARGO_PKG_VERSION=1.3.4 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/httparse-9519b75a8ab34cdd/out rustc --crate-name httparse /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=f42c365739b0786a -C extra-filename=-f42c365739b0786a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg httparse_min_2018 --cfg httparse_simd`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=typenum CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.12.0 CARGO_PKG_AUTHORS='Paho Lurie-Gregg <paho@paholg.com>:Andre Bogus <bogusandre@gmail.com>' CARGO_PKG_DESCRIPTION='Typenum is a Rust library for type-level numbers evaluated at compile time. It currently supports bits, unsigned integers, and signed integers. It also provides a type-level array of type-level numbers, but its implementation is incomplete.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=typenum CARGO_PKG_REPOSITORY='https://github.com/paholg/typenum' CARGO_PKG_VERSION=1.12.0 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=12 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/typenum-228a1494e0918010/out TYPENUM_BUILD_CONSTS=/home/pi/deno/target/debug/build/typenum-228a1494e0918010/out/consts.rs TYPENUM_BUILD_OP=/home/pi/deno/target/debug/build/typenum-228a1494e0918010/out/op.rs rustc --crate-name typenum /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/typenum-1.12.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=494752bcbcf13f23 -C extra-filename=-494752bcbcf13f23 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
Compiling rand_isaac v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_isaac CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='ISAAC random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_isaac' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_isaac CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_isaac /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=77b887c1d366684f -C extra-filename=-77b887c1d366684f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-5e310b0d7db91be2.rmeta --cap-lints warn`
Compiling rand_hc v0.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_hc CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='HC128 random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_hc' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_hc CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_hc /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=3cf4e841d9674c6e -C extra-filename=-3cf4e841d9674c6e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-5e310b0d7db91be2.rmeta --cap-lints warn`
Compiling rand_xorshift v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_xorshift CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Xorshift random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_xorshift' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_xorshift CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_xorshift /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=306bdc86c1f9e8a3 -C extra-filename=-306bdc86c1f9e8a3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-5e310b0d7db91be2.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/rand_pcg-9b895cf06b89458e/build-script-build`
[rand_pcg 0.1.2] cargo:rerun-if-changed=build.rs
[rand_pcg 0.1.2] cargo:rustc-cfg=rustc_1_26
Running `/home/pi/deno/target/debug/build/rand_chacha-94f70950fc64093e/build-script-build`
[rand_chacha 0.1.1] cargo:rerun-if-changed=build.rs
[rand_chacha 0.1.1] cargo:rustc-cfg=rustc_1_26
Running `/home/pi/deno/target/debug/build/rand-89f79ead84a8ac84/build-script-build`
[rand 0.6.5] cargo:rerun-if-changed=build.rs
Running `/home/pi/deno/target/debug/build/ring-ab3dd717a1c207de/build-script-build`
[ring 0.16.15] ENV CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo
[ring 0.16.15] ENV CARGO_CFG_TARGET_ARCH=aarch64
[ring 0.16.15] ENV CARGO_CFG_TARGET_ENDIAN=little
[ring 0.16.15] ENV CARGO_CFG_TARGET_ENV=gnu
[ring 0.16.15] ENV CARGO_CFG_TARGET_FAMILY=unix
[ring 0.16.15] ENV CARGO_CFG_TARGET_OS=linux
[ring 0.16.15] ENV CARGO_CFG_TARGET_POINTER_WIDTH=64
[ring 0.16.15] ENV CARGO_CFG_TARGET_VENDOR=unknown
[ring 0.16.15] ENV CARGO_CFG_UNIX=
[ring 0.16.15] ENV CARGO_FEATURE_ALLOC=1
[ring 0.16.15] ENV CARGO_FEATURE_DEFAULT=1
[ring 0.16.15] ENV CARGO_FEATURE_DEV_URANDOM_FALLBACK=1
[ring 0.16.15] ENV CARGO_FEATURE_ONCE_CELL=1
[ring 0.16.15] ENV CARGO_HOME=/home/pi/.cargo
[ring 0.16.15] ENV CARGO_MAKEFLAGS=--jobserver-fds=6,11 -j --jobserver-auth=6,11 -j
[ring 0.16.15] ENV CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15
[ring 0.16.15] ENV CARGO_MANIFEST_LINKS=ring-asm
[ring 0.16.15] ENV CARGO_PKG_AUTHORS=Brian Smith <brian@briansmith.org>
[ring 0.16.15] ENV CARGO_PKG_DESCRIPTION=Safe, fast, small crypto using Rust.
[ring 0.16.15] ENV CARGO_PKG_HOMEPAGE=
[ring 0.16.15] ENV CARGO_PKG_LICENSE=
[ring 0.16.15] ENV CARGO_PKG_LICENSE_FILE=LICENSE
[ring 0.16.15] ENV CARGO_PKG_NAME=ring
[ring 0.16.15] ENV CARGO_PKG_REPOSITORY=https://github.com/briansmith/ring
[ring 0.16.15] ENV CARGO_PKG_VERSION=0.16.15
[ring 0.16.15] ENV CARGO_PKG_VERSION_MAJOR=0
[ring 0.16.15] ENV CARGO_PKG_VERSION_MINOR=16
[ring 0.16.15] ENV CARGO_PKG_VERSION_PATCH=15
[ring 0.16.15] ENV CARGO_PKG_VERSION_PRE=
[ring 0.16.15] ENV DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
[ring 0.16.15] ENV DEBUG=true
[ring 0.16.15] ENV HOME=/home/pi
[ring 0.16.15] ENV HOST=aarch64-unknown-linux-gnu
[ring 0.16.15] ENV LANG=en_US.UTF-8
[ring 0.16.15] ENV LANGUAGE=en_US.UTF-8
[ring 0.16.15] ENV LC_ADDRESS=en_US.UTF-8
[ring 0.16.15] ENV LC_ALL=en_US.UTF-8
[ring 0.16.15] ENV LC_IDENTIFICATION=en_US.UTF-8
[ring 0.16.15] ENV LC_MEASUREMENT=en_US.UTF-8
[ring 0.16.15] ENV LC_MONETARY=en_US.UTF-8
[ring 0.16.15] ENV LC_NAME=en_US.UTF-8
[ring 0.16.15] ENV LC_NUMERIC=en_US.UTF-8
[ring 0.16.15] ENV LC_PAPER=en_US.UTF-8
[ring 0.16.15] ENV LC_TELEPHONE=en_US.UTF-8
[ring 0.16.15] ENV LC_TIME=en_US.UTF-8
[ring 0.16.15] ENV LD_LIBRARY_PATH=/home/pi/deno/target/debug/deps:/home/pi/deno/target/debug:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib/rustlib/aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib
[ring 0.16.15] ENV LOGNAME=pi
[ring 0.16.15] ENV LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=00:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lha=01;31:*.lz4=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.tzo=01;31:*.t7z=01;31:*.zip=01;31:*.z=01;31:*.dz=01;31:*.gz=01;31:*.lrz=01;31:*.lz=01;31:*.lzo=01;31:*.xz=01;31:*.zst=01;31:*.tzst=01;31:*.bz2=01;31:*.bz=01;31:*.tbz=01;31:*.tbz2=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.war=01;31:*.ear=01;31:*.sar=01;31:*.rar=01;31:*.alz=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.cab=01;31:*.wim=01;31:*.swm=01;31:*.dwm=01;31:*.esd=01;31:*.jpg=01;35:*.jpeg=01;35:*.mjpg=01;35:*.mjpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.webm=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=00;36:*.au=00;36:*.flac=00;36:*.m4a=00;36:*.mid=00;36:*.midi=00;36:*.mka=00;36:*.mp3=00;36:*.mpc=00;36:*.ogg=00;36:*.ra=00;36:*.wav=00;36:*.oga=00;36:*.opus=00;36:*.spx=00;36:*.xspf=00;36:
[ring 0.16.15] ENV MAIL=/var/mail/pi
[ring 0.16.15] ENV NO_AT_BRIDGE=1
[ring 0.16.15] ENV NUM_JOBS=4
[ring 0.16.15] ENV OLDPWD=/home/pi
[ring 0.16.15] ENV OPT_LEVEL=0
[ring 0.16.15] ENV OUT_DIR=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out
[ring 0.16.15] ENV PATH=/home/pi/.cargo/bin:/home/pi/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/games:/usr/games
[ring 0.16.15] ENV PROFILE=debug
[ring 0.16.15] ENV PWD=/home/pi/deno
[ring 0.16.15] ENV RUSTC=rustc
[ring 0.16.15] ENV RUSTDOC=rustdoc
[ring 0.16.15] ENV RUSTUP_HOME=/home/pi/.rustup
[ring 0.16.15] ENV RUSTUP_TOOLCHAIN=stable-aarch64-unknown-linux-gnu
[ring 0.16.15] ENV RUST_RECURSION_COUNT=1
[ring 0.16.15] ENV SHELL=/bin/bash
[ring 0.16.15] ENV SHLVL=1
[ring 0.16.15] ENV SSH_CLIENT=192.168.1.191 48212 22
[ring 0.16.15] ENV SSH_CONNECTION=192.168.1.191 48212 192.168.1.221 22
[ring 0.16.15] ENV SSH_TTY=/dev/pts/0
[ring 0.16.15] ENV SSL_CERT_DIR=/usr/lib/ssl/certs
[ring 0.16.15] ENV SSL_CERT_FILE=/usr/lib/ssl/certs/ca-certificates.crt
[ring 0.16.15] ENV TARGET=aarch64-unknown-linux-gnu
[ring 0.16.15] ENV TERM=xterm-256color
[ring 0.16.15] ENV TEXTDOMAIN=Linux-PAM
[ring 0.16.15] ENV USER=pi
[ring 0.16.15] ENV V8_FROM_SOURCE=1
[ring 0.16.15] ENV XDG_RUNTIME_DIR=/run/user/1000
[ring 0.16.15] ENV XDG_SESSION_CLASS=user
[ring 0.16.15] ENV XDG_SESSION_ID=c2
[ring 0.16.15] ENV XDG_SESSION_TYPE=tty
[ring 0.16.15] ENV _=/home/pi/.cargo/bin/cargo
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/aesv8-armx-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/aesv8-armx-linux64.S"
[rand 0.6.5] cargo:rustc-cfg=rustc_1_25
[rand 0.6.5] cargo:rustc-cfg=rustc_1_26
[rand 0.6.5] cargo:rustc-cfg=rustc_1_27
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=crc32fast CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.0 CARGO_PKG_AUTHORS='Sam Rijs <srijs@airpost.net>:Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Fast, SIMD-accelerated CRC32 (IEEE) checksum computation' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crc32fast CARGO_PKG_REPOSITORY='https://github.com/srijs/rust-crc32fast' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/crc32fast-3e7e5f95c9508a33/out rustc --crate-name crc32fast /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=d6cf3a4689ff9180 -C extra-filename=-d6cf3a4689ff9180 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --cap-lints warn --cfg crc32fast_stdarchx86`
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ghashv8-armx-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/ghashv8-armx-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/vpaes-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/vpaes-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/armv8-mont-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/armv8-mont-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/chacha-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/chacha-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz256-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/ecp_nistz256-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ghash-neon-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/ghash-neon-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/poly1305-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/poly1305-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/sha512-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/sha512-armv8-linux64.S"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
Compiling brotli-decompressor v2.3.1
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/sha256-armv8-linux64.o" "/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/pregenerated/sha256-armv8-linux64.S"
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=brotli_decompressor CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1 CARGO_PKG_AUTHORS='Daniel Reiter Horn <danielrh@dropbox.com>:The Brotli Authors' CARGO_PKG_DESCRIPTION='A brotli decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib'\''s allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. Alternatively, --features=unsafe turns off array bounds checks and memory initialization but provides a safe interface for the caller. Without adding the --features=unsafe argument, all included code is safe. For compression in addition to this library, download https://github.com/dropbox/rust-brotli ' CARGO_PKG_HOMEPAGE='https://github.com/dropbox/rust-brotli-decompressor' CARGO_PKG_LICENSE=BSD-3-Clause/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=brotli-decompressor CARGO_PKG_REPOSITORY='https://github.com/dropbox/rust-brotli-decompressor' CARGO_PKG_VERSION=2.3.1 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name brotli_decompressor /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc-stdlib"' --cfg 'feature="std"' -C metadata=3c67339df0330fd3 -C extra-filename=-3c67339df0330fd3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern alloc_no_stdlib=/home/pi/deno/target/debug/deps/liballoc_no_stdlib-5eb096fc2bc1bc1a.rmeta --extern alloc_stdlib=/home/pi/deno/target/debug/deps/liballoc_stdlib-86624371302b2caf.rmeta --cap-lints warn`
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/aes_nohw.o" "crypto/fipsmodule/aes/aes_nohw.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/montgomery.o" "crypto/fipsmodule/bn/montgomery.c"
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=encoding_rs CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24 CARGO_PKG_AUTHORS='Henri Sivonen <hsivonen@hsivonen.fi>' CARGO_PKG_DESCRIPTION='A Gecko-oriented implementation of the Encoding Standard' CARGO_PKG_HOMEPAGE='https://docs.rs/encoding_rs/' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=encoding_rs CARGO_PKG_REPOSITORY='https://github.com/hsivonen/encoding_rs' CARGO_PKG_VERSION=0.8.24 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=24 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/encoding_rs-14e66796de1fcd9f/out rustc --crate-name encoding_rs /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=e9922d79b889f73d -C extra-filename=-e9922d79b889f73d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --cap-lints warn`
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/montgomery_inv.o" "crypto/fipsmodule/bn/montgomery_inv.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=anyhow CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.32 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Flexible concrete Error type built on std::error::Error' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=anyhow CARGO_PKG_REPOSITORY='https://github.com/dtolnay/anyhow' CARGO_PKG_VERSION=1.0.32 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=32 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/anyhow-1bcb69c866be9c2b/out rustc --crate-name anyhow --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anyhow-1.0.32/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=60520ba4bdb5187f -C extra-filename=-60520ba4bdb5187f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn`
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/limbs.o" "crypto/limbs/limbs.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/ffi/mod.rs:37:45
|
37 | type BrotliAdditionalErrorData = boxed::Box<any::Any + Send + 'static>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn any::Any + Send + 'static`
|
= note: `#[warn(bare_trait_objects)]` on by default
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/mem.o" "crypto/mem.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/crypto.o" "crypto/crypto.c"
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/curve25519.o" "crypto/curve25519/curve25519.c"
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=proc_macro2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='A stable implementation of the upcoming new `proc_macro` API. Comes with an
option, off by default, to also reimplement itself in terms of the upstream
unstable API.
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=proc-macro2 CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/proc-macro2' CARGO_PKG_VERSION=0.4.30 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=30 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/proc-macro2-8ff7c1bc78019f76/out rustc --crate-name proc_macro2 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="proc-macro"' -C metadata=8ec8e32a8fd78b3e -C extra-filename=-8ec8e32a8fd78b3e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern unicode_xid=/home/pi/deno/target/debug/deps/libunicode_xid-cd8a08b6a6034e82.rmeta --cap-lints warn --cfg u128 --cfg use_proc_macro --cfg wrap_proc_macro`
warning: unused label
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/macros.rs:878:41
|
878 | ... 'innermost: loop {
| ^^^^^^^^^^
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/euc_jp.rs:77:5
|
77 | / euc_jp_decoder_functions!(
78 | | {
79 | | let trail_minus_offset = byte.wrapping_sub(0xA1);
80 | | // Fast-track Hiragana (60% according to Lunde)
... |
220 | | handle
221 | | );
| |______- in this macro invocation
|
= note: `#[warn(unused_labels)]` on by default
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused label
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/macros.rs:878:41
|
878 | ... 'innermost: loop {
| ^^^^^^^^^^
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/euc_jp.rs:77:5
|
77 | / euc_jp_decoder_functions!(
78 | | {
79 | | let trail_minus_offset = byte.wrapping_sub(0xA1);
80 | | // Fast-track Hiragana (60% according to Lunde)
... |
220 | | handle
221 | | );
| |______- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused label
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/macros.rs:574:41
|
574 | ... 'innermost: loop {
| ^^^^^^^^^^
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/gb18030.rs:111:5
|
111 | / gb18030_decoder_functions!(
112 | | {
113 | | // If first is between 0x81 and 0xFE, inclusive,
114 | | // subtract offset 0x81.
... |
294 | | handle,
295 | | 'outermost);
| |____________________- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused label
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/macros.rs:574:41
|
574 | ... 'innermost: loop {
| ^^^^^^^^^^
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/gb18030.rs:111:5
|
111 | / gb18030_decoder_functions!(
112 | | {
113 | | // If first is between 0x81 and 0xFE, inclusive,
114 | | // subtract offset 0x81.
... |
294 | | handle,
295 | | 'outermost);
| |____________________- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:743:26
|
743 | 0...0x7F => {
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:749:29
|
749 | 0xC2...0xD5 => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:770:36
|
770 | 0xE1 | 0xE3...0xEC | 0xEE => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:879:29
|
879 | 0xF1...0xF4 => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:942:18
|
942 | 0...0x7F => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:948:21
|
948 | 0xC2...0xD5 => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/mem.rs:985:28
|
985 | 0xE1 | 0xE3...0xEC | 0xEE => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2685:29
|
2685 | b'A'...b'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2690:29
|
2690 | b'a'...b'z' | b'0'...b'9' | b'-' | b'_' | b':' | b'.' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2690:43
|
2690 | b'a'...b'z' | b'0'...b'9' | b'-' | b'_' | b':' | b'.' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2713:29
|
2713 | b'A'...b'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2722:29
|
2722 | b'a'...b'z' | b'0'...b'9' | b'-' | b'_' | b':' | b'.' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/lib.rs:2722:43
|
2722 | b'a'...b'z' | b'0'...b'9' | b'-' | b'_' | b':' | b'.' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/strnom.rs:98:24
|
98 | b' ' | 0x09...0x0d => {
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:774:24
|
774 | b'\x20'...b'\x7E' => escaped.push(*b as char),
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1176:25
|
1176 | next_ch!(chars @ '0'...'7');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1177:25
|
1177 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1177:37
|
1177 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1177:49
|
1177 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1185:26
|
1185 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1185:40
|
1185 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1185:54
|
1185 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1186:26
|
1186 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1186:40
|
1186 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1186:54
|
1186 | next_ch!(chars @ b'0'...b'9' | b'a'...b'f' | b'A'...b'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1195:25
|
1195 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1195:37
|
1195 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1195:49
|
1195 | next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1197:37
|
1197 | let c = next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F' | '_' | '}');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1197:49
|
1197 | let c = next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F' | '_' | '}');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1197:61
|
1197 | let c = next_ch!(chars @ '0'...'9' | 'a'...'f' | 'A'...'F' | '_' | '}');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1226:16
|
1226 | '0'...'9' | '_' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1271:20
|
1271 | '0'...'9' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1321:17
|
1321 | b'0'...b'9' => (b - b'0') as u64,
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1322:17
|
1322 | b'a'...b'f' => 10 + (b - b'a') as u64,
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/fallback.rs:1323:17
|
1323 | b'A'...b'F' => 10 + (b - b'A') as u64,
| ^^^ help: use `..=` for an inclusive range
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/wrapper.rs:63:26
|
63 | type PanicHook = Fn(&PanicInfo) + Sync + Send + 'static;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&PanicInfo) + Sync + Send + 'static`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: use of deprecated function `std::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.24/src/handles.rs:113:30
|
113 | let mut u: u16 = ::std::mem::uninitialized();
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz.o" "crypto/fipsmodule/ec/ecp_nistz.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz256.o" "crypto/fipsmodule/ec/ecp_nistz256.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/gfp_p256.o" "crypto/fipsmodule/ec/gfp_p256.c"
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/gfp_p384.o" "crypto/fipsmodule/ec/gfp_p384.c"
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running: "ar" "crs" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/libring-core.a" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/aesv8-armx-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ghashv8-armx-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/vpaes-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/armv8-mont-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/chacha-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz256-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ghash-neon-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/poly1305-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/sha512-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/sha256-armv8-linux64.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/aes_nohw.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/montgomery.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/montgomery_inv.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/limbs.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/mem.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/crypto.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/curve25519.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/ecp_nistz256.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/gfp_p256.o" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/gfp_p384.o"
[ring 0.16.15] running "cc" "-O0" "-ffunction-sections" "-fdata-sections" "-fPIC" "-g" "-fno-omit-frame-pointer" "-I" "include" "-Wall" "-Wextra" "-std=c1x" "-Wbad-function-cast" "-Wnested-externs" "-Wstrict-prototypes" "-pedantic" "-pedantic-errors" "-Wall" "-Wextra" "-Wcast-align" "-Wcast-qual" "-Wconversion" "-Wenum-compare" "-Wfloat-equal" "-Wformat=2" "-Winline" "-Winvalid-pch" "-Wmissing-field-initializers" "-Wmissing-include-dirs" "-Wredundant-decls" "-Wshadow" "-Wsign-compare" "-Wsign-conversion" "-Wundef" "-Wuninitialized" "-Wwrite-strings" "-fno-strict-aliasing" "-fvisibility=hidden" "-fstack-protector" "-g3" "-DNDEBUG" "-c" "-o/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/constant_time_test.o" "crypto/constant_time_test.c"
[ring 0.16.15] exit code: 0
[ring 0.16.15] cargo:rustc-link-lib=static=ring-core
[ring 0.16.15] OPT_LEVEL = Some("0")
[ring 0.16.15] TARGET = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] HOST = Some("aarch64-unknown-linux-gnu")
[ring 0.16.15] CC_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CC_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CC = None
[ring 0.16.15] CC = None
[ring 0.16.15] CFLAGS_aarch64-unknown-linux-gnu = None
[ring 0.16.15] CFLAGS_aarch64_unknown_linux_gnu = None
[ring 0.16.15] HOST_CFLAGS = None
[ring 0.16.15] CFLAGS = None
[ring 0.16.15] CRATE_CC_NO_DEFAULTS = None
[ring 0.16.15] DEBUG = Some("true")
[ring 0.16.15] CARGO_CFG_TARGET_FEATURE = None
[ring 0.16.15] running: "ar" "crs" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/libring-test.a" "/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out/constant_time_test.o"
[ring 0.16.15] exit code: 0
[ring 0.16.15] cargo:rustc-link-lib=static=ring-test
[ring 0.16.15] cargo:rustc-link-search=native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=maybe_uninit CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/maybe-uninit-2.0.0 CARGO_PKG_AUTHORS='est31 <MTest31@outlook.com>:The Rust Project Developers' CARGO_PKG_DESCRIPTION='MaybeUninit for friends of backwards compatibility' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=maybe-uninit CARGO_PKG_REPOSITORY='https://github.com/est31/maybe-uninit' CARGO_PKG_VERSION=2.0.0 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/maybe-uninit-a77bf1898a0528d1/out rustc --crate-name maybe_uninit /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/maybe-uninit-2.0.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fcfcefde17ed1171 -C extra-filename=-fcfcefde17ed1171 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg derive_copy --cfg repr_transparent --cfg native_uninit`
Compiling http-body v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=http_body CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.3.1 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>:Lucio Franco <luciofranco14@gmail.com>:Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='Trait representing an asynchronous, streaming, HTTP request or response body.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=http-body CARGO_PKG_REPOSITORY='https://github.com/hyperium/http-body' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name http_body --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/http-body-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d7084d070d338fd7 -C extra-filename=-d7084d070d338fd7 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --cap-lints warn`
Compiling headers-core v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=headers_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/headers-core-0.2.0 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='typed HTTP headers core trait' CARGO_PKG_HOMEPAGE='https://hyper.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=headers-core CARGO_PKG_REPOSITORY='https://github.com/hyperium/headers' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name headers_core /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/headers-core-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=8315db51033a27ec -C extra-filename=-8315db51033a27ec --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --cap-lints warn`
Compiling quote v1.0.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/quote' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name quote --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-1.0.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=8992f20140e1ec45 -C extra-filename=-8992f20140e1ec45 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --cap-lints warn`
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/huffman/mod.rs:69:9
|
69 | / core::mem::replace(&mut self.htrees,
70 | | alloc_u32.alloc_cell(nt));
| |_____________________________________________________^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/huffman/mod.rs:71:9
|
71 | / core::mem::replace(&mut self.codes,
72 | | alloc_hc.alloc_cell(nt * BROTLI_HUFFMAN_MAX_TABLE_SIZE as usize));
| |_____________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1199:5
|
1199 | / mem::replace(&mut s.literal_hgroup.codes,
1200 | | mem::replace(&mut hcodes, AllocHC::AllocatedMemory::default()));
| |_________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1201:5
|
1201 | / mem::replace(&mut s.literal_hgroup.htrees,
1202 | | mem::replace(&mut htrees, AllocU32::AllocatedMemory::default()));
| |__________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1204:5
|
1204 | / mem::replace(&mut s.insert_copy_hgroup.codes,
1205 | | mem::replace(&mut hcodes, AllocHC::AllocatedMemory::default()));
| |_________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1206:5
|
1206 | / mem::replace(&mut s.insert_copy_hgroup.htrees,
1207 | | mem::replace(&mut htrees, AllocU32::AllocatedMemory::default()));
| |__________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1209:5
|
1209 | / mem::replace(&mut s.distance_hgroup.codes,
1210 | | mem::replace(&mut hcodes, AllocHC::AllocatedMemory::default()));
| |_________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1211:5
|
1211 | / mem::replace(&mut s.distance_hgroup.htrees,
1212 | | mem::replace(&mut htrees, AllocU32::AllocatedMemory::default()));
| |__________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1336:9
|
1336 | / mem::replace(&mut s.context_map_table,
1337 | | mem::replace(&mut local_context_map_table,
1338 | | AllocHC::AllocatedMemory::default()));
| |________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1456:5
|
1456 | / mem::replace(&mut s.dist_context_map,
1457 | | mem::replace(&mut context_map_arg, AllocU8::AllocatedMemory::default()));
| |__________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:1460:5
|
1460 | / mem::replace(&mut s.context_map,
1461 | | mem::replace(&mut context_map_arg, AllocU8::AllocatedMemory::default()));
| |__________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:2596:3
|
2596 | / core::mem::replace(&mut s.literal_hgroup,
2597 | | core::mem::replace(&mut saved_literal_hgroup,
2598 | | HuffmanTreeGroup::<AllocU32, AllocHC>::default()));
| |___________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:2600:3
|
2600 | / core::mem::replace(&mut s.distance_hgroup,
2601 | | core::mem::replace(&mut saved_distance_hgroup,
2602 | | HuffmanTreeGroup::<AllocU32, AllocHC>::default()));
| |___________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:2604:3
|
2604 | / core::mem::replace(&mut s.insert_copy_hgroup,
2605 | | core::mem::replace(&mut saved_insert_copy_hgroup,
2606 | | HuffmanTreeGroup::<AllocU32, AllocHC>::default()));
| |___________________________________________________________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:2945:11
|
2945 | / mem::replace(&mut s.block_type_length_state.block_type_trees,
2946 | | new_huffman_table);
| |__________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-decompressor-2.3.1/src/decode.rs:2964:11
|
2964 | / mem::replace(&mut s.block_type_length_state.block_len_trees,
2965 | | new_huffman_table);
| |__________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
Compiling tracing v0.1.19
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tracing CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.19 CARGO_PKG_AUTHORS='Eliza Weisman <eliza@buoyant.io>:Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='Application-level tracing for Rust.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_VERSION=0.1.19 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=19 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tracing --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-0.1.19/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="log"' --cfg 'feature="std"' -C metadata=791503926adf223e -C extra-filename=-791503926adf223e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern tracing_core=/home/pi/deno/target/debug/deps/libtracing_core-d5b6986b9ac56974.rmeta --cap-lints warn`
warning: 24 warnings emitted
Compiling want v0.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=want CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='Detect when another Future wants a result.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=want CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/want' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name want --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=dbab5ac557ac5f61 -C extra-filename=-dbab5ac557ac5f61 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern try_lock=/home/pi/deno/target/debug/deps/libtry_lock-eaaa2b9d3be8d724.rmeta --cap-lints warn`
warning: use of deprecated associated function `try_lock::TryLock::<T>::try_lock_order`: This method is actually unsafe because it unsafely allows the use of weaker memory ordering. Please use try_lock_explicit instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:209:63
|
209 | if let Some(mut locked) = self.inner.task.try_lock_order(SeqCst, SeqCst) {
| ^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:2:9
|
2 | #![deny(warnings)]
| ^^^^^^^^
= note: `#[warn(deprecated)]` implied by `#[warn(warnings)]`
warning: use of deprecated associated function `try_lock::TryLock::<T>::try_lock_order`: This method is actually unsafe because it unsafely allows the use of weaker memory ordering. Please use try_lock_explicit instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/want-0.3.0/src/lib.rs:352:63
|
352 | if let Some(mut locked) = self.inner.task.try_lock_order(SeqCst, SeqCst) {
| ^^^^^^^^^^^^^^
Compiling aho-corasick v0.7.13
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=aho_corasick CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13 CARGO_PKG_AUTHORS='Andrew Gallant <jamslam@gmail.com>' CARGO_PKG_DESCRIPTION='Fast multiple substring searching.' CARGO_PKG_HOMEPAGE='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_LICENSE=Unlicense/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=aho-corasick CARGO_PKG_REPOSITORY='https://github.com/BurntSushi/aho-corasick' CARGO_PKG_VERSION=0.7.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name aho_corasick /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=ce9d52a2241993bf -C extra-filename=-ce9d52a2241993bf --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --cap-lints warn`
warning: 2 warnings emitted
Compiling buf_redux v0.8.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=buf_redux CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4 CARGO_PKG_AUTHORS='Austin Bonander <austin.bonander@gmail.com>' CARGO_PKG_DESCRIPTION='Drop-in replacements for buffered I/O in `std::io` with extra features.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=buf_redux CARGO_PKG_REPOSITORY='https://github.com/abonander/buf_redux' CARGO_PKG_VERSION=0.8.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name buf_redux /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=aeedda22e9aa4af3 -C extra-filename=-aeedda22e9aa4af3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern safemem=/home/pi/deno/target/debug/deps/libsafemem-6b0f2f6365ac0996.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:373:45
|
373 | pub fn boxed<'a>(self) -> BufReader<Box<Read + 'a>, P> where R: 'a {
| ^^^^^^^^^ help: use `dyn`: `dyn Read + 'a`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:374:24
|
374 | let inner: Box<Read + 'a> = Box::new(self.inner);
| ^^^^^^^^^ help: use `dyn`: `dyn Read + 'a`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:871:32
|
871 | fn cause(&self) -> Option<&error::Error> {
| ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:1273:42
|
1273 | static DROP_ERR_HANDLER: RefCell<Box<Fn(&mut Write, &mut Buffer, io::Error)>>
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&mut Write, &mut Buffer, io::Error)`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:1273:50
|
1273 | static DROP_ERR_HANDLER: RefCell<Box<Fn(&mut Write, &mut Buffer, io::Error)>>
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:1286:18
|
1286 | where F: Fn(&mut Write, &mut Buffer, io::Error)
| ^^^^^ help: use `dyn`: `dyn Write`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:868:9
|
868 | error::Error::description(self.error())
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:1050:17
|
1050 | let mut buf = unsafe { self.buf.write_buf() };
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/buf_redux-0.8.4/src/lib.rs:1068:17
|
1068 | let mut buf = self.buf.write_buf();
| ----^^^
| |
| help: remove this `mut`
warning: 9 warnings emitted
Compiling twoway v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=twoway CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/twoway-0.1.8 CARGO_PKG_AUTHORS=bluss CARGO_PKG_DESCRIPTION='Fast substring search for strings and byte strings. Optional SSE4.2 acceleration (requires nightly and cargo feature flag pcmp) using pcmpestri. Memchr is the only mandatory dependency. The two way algorithm is also used by rust'\''s libstd itself, but here it is exposed both for byte strings, using memchr, and optionally using a SSE4.2 accelerated version.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=twoway CARGO_PKG_REPOSITORY='https://github.com/bluss/twoway' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name twoway /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/twoway-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="use_std"' -C metadata=a4e7e7aefeb5cfa6 -C extra-filename=-a4e7e7aefeb5cfa6 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=indexmap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.6.0 CARGO_PKG_AUTHORS='bluss:Josh Stone <cuviper@gmail.com>' CARGO_PKG_DESCRIPTION='A hash table with consistent order and fast iteration.
The indexmap is a hash table where the iteration order of the key-value
pairs is independent of the hash values of the keys. It has the usual
hash table functionality, it preserves insertion order except after
removals, and it allows lookup of its elements by either hash table key
or numerical index. A corresponding hash set type is also provided.
This crate was initially published under the name ordermap, but it was renamed to
indexmap.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=indexmap CARGO_PKG_REPOSITORY='https://github.com/bluss/indexmap' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/indexmap-0baae9a6a9fa68f6/out rustc --crate-name indexmap --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/indexmap-1.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d21a11fa86c9a564 -C extra-filename=-d21a11fa86c9a564 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern hashbrown=/home/pi/deno/target/debug/deps/libhashbrown-678b7731143f8a88.rmeta --cap-lints warn --cfg has_std`
warning: 17 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=num_traits CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12 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/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-traits CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-traits' CARGO_PKG_VERSION=0.2.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/num-traits-77fa761f7e874dcc/out rustc --crate-name num_traits /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-traits-0.2.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=585bf529f7058ba5 -C extra-filename=-585bf529f7058ba5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg has_i128 --cfg has_to_int_unchecked`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=miniz_oxide CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.2 CARGO_PKG_AUTHORS='Frommi <daniil.liferenko@gmail.com>:oyvindln <oyvindln@users.noreply.github.com>' CARGO_PKG_DESCRIPTION='DEFLATE compression and decompression library rewritten in Rust based on miniz' CARGO_PKG_HOMEPAGE='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=miniz_oxide CARGO_PKG_REPOSITORY='https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/miniz_oxide-47bbd7f0fbdf0e79/out rustc --crate-name miniz_oxide --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.4.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2847bdcce648d1be -C extra-filename=-2847bdcce648d1be --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern adler=/home/pi/deno/target/debug/deps/libadler-ae9e7a4571d2564d.rmeta --cap-lints warn --cfg has_alloc`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=crossbeam_utils CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.2 CARGO_PKG_AUTHORS='The Crossbeam Project Developers' CARGO_PKG_DESCRIPTION='Utilities for concurrent programming' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-utils CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_VERSION=0.7.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/crossbeam-utils-d57b960f09cff5ed/out rustc --crate-name crossbeam_utils /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.7.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="lazy_static"' --cfg 'feature="std"' -C metadata=c5ab5407a8df4820 -C extra-filename=-c5ab5407a8df4820 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --cap-lints warn --cfg has_min_const_fn --cfg has_atomic_u8 --cfg has_atomic_u16 --cfg has_atomic_u32 --cfg has_atomic_u64`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=unicase CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A case-insensitive wrapper around strings.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=unicase CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/unicase' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/unicase-e1fbe0dfc895198b/out rustc --crate-name unicase /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicase-2.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f931e18ada7a98b1 -C extra-filename=-f931e18ada7a98b1 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --cap-lints warn --cfg __unicase__iter_cmp --cfg __unicase__default_hasher --cfg __unicase__const_fns --cfg __unicase__core_and_alloc`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=lexical_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4 CARGO_PKG_AUTHORS='Alex Huszagh <ahuszagh@gmail.com>' CARGO_PKG_DESCRIPTION='Lexical, to- and from-string conversion routines.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=lexical-core CARGO_PKG_REPOSITORY='https://github.com/Alexhuszagh/rust-lexical/tree/master/lexical-core' CARGO_PKG_VERSION=0.7.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/lexical-core-7eab99aeb9e80c72/out rustc --crate-name lexical_core --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="arrayvec"' --cfg 'feature="correct"' --cfg 'feature="default"' --cfg 'feature="ryu"' --cfg 'feature="static_assertions"' --cfg 'feature="std"' --cfg 'feature="table"' -C metadata=0fd84c1638b7fc94 -C extra-filename=-0fd84c1638b7fc94 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern arrayvec=/home/pi/deno/target/debug/deps/libarrayvec-0e5ed53ea7cac6d2.rmeta --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern ryu=/home/pi/deno/target/debug/deps/libryu-fbccce0aee0e54ee.rmeta --extern static_assertions=/home/pi/deno/target/debug/deps/libstatic_assertions-5c859075cc3803c4.rmeta --cap-lints warn --cfg limb_width_64`
Compiling fxhash v0.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=fxhash CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1 CARGO_PKG_AUTHORS='cbreeden <github@u.breeden.cc>' CARGO_PKG_DESCRIPTION='A fast, non-secure, hashing algorithm derived from an internal hasher used in FireFox and Rustc.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=fxhash CARGO_PKG_REPOSITORY='https://github.com/cbreeden/fxhash' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name fxhash /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/fxhash-0.2.1/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=91f6ca325756c481 -C extra-filename=-91f6ca325756c481 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern byteorder=/home/pi/deno/target/debug/deps/libbyteorder-3621f46a2321b047.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=getrandom CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15 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_REPOSITORY='https://github.com/rust-random/getrandom' CARGO_PKG_VERSION=0.1.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/getrandom-4fdc4a0c1e07fa23/out rustc --crate-name getrandom --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=ad28ed35378d1a64 -C extra-filename=-ad28ed35378d1a64 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling num_cpus v1.13.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=num_cpus CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.0 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='Get the number of CPUs on a machine.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num_cpus CARGO_PKG_REPOSITORY='https://github.com/seanmonstar/num_cpus' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name num_cpus /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.13.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=cb2a766a1fdc9f6c -C extra-filename=-cb2a766a1fdc9f6c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: 18 warnings emitted
Compiling iovec v0.1.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=iovec CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>' CARGO_PKG_DESCRIPTION='Portable buffer type for scatter/gather I/O operations
' CARGO_PKG_HOMEPAGE='https://github.com/carllerche/iovec' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=iovec CARGO_PKG_REPOSITORY='https://github.com/carllerche/iovec' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name iovec /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6905482cd25d8b2c -C extra-filename=-6905482cd25d8b2c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:176:5
|
176 | /// Get the mantissa exponent from the raw exponent.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= note: `#[warn(unused_doc_comments)]` on by default
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:251:5
|
251 | /// Extract float subcomponents from input bytes.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:500:5
|
500 | /// Get number of all integer digits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:509:5
|
509 | /// Get number of all fraction digits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:518:5
|
518 | /// Get number of significant fraction digits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:524:5
|
524 | /// Get the number of digits in the mantissa.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:525:5
|
525 | /// Cannot overflow, since this is based off a single usize input string.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:540:5
|
540 | /// Get the mantissa exponent from the raw exponent.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/format/traits.rs:546:5
|
546 | /// Get the scientific exponent from the raw exponent.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:36:5
|
36 | /// Get the mantissa component.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:42:5
|
42 | /// Get the exponent component.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:50:5
|
50 | /// Multiply two normalized extended-precision floats, as if by `a*b`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:51:5
|
51 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:52:5
|
52 | /// The precision is maximal when the numbers are normalized, however,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:53:5
|
53 | /// decent precision will occur as long as both values have high bits
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:54:5
|
54 | /// set. The result is not normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:55:5
|
55 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:56:5
|
56 | /// Algorithm:
| ^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:57:5
|
57 | /// 1. Non-signed multiplication of mantissas (requires 2x as many bits as input).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:58:5
|
58 | /// 2. Normalization of the result (not done here).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:59:5
|
59 | /// 3. Addition of exponents.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:89:5
|
89 | /// Multiply in-place, as if by `a*b`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:90:5
|
90 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:91:5
|
91 | /// The result is not normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:100:5
|
100 | /// Get if extended-float is normalized, MSB is set.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:108:5
|
108 | /// Normalize float-point number.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:109:5
|
109 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:110:5
|
110 | /// Shift the mantissa so the number of leading zeros is 0, or the value
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:111:5
|
111 | /// itself is 0.
| ^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:112:5
|
112 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:113:5
|
113 | /// Get the number of bytes shifted.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:136:5
|
136 | /// Normalize floating-point number to n-bits away from the MSB.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:137:5
|
137 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:138:5
|
138 | /// This may lead to lossy rounding, and will not use custom rounding
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:139:5
|
139 | /// rules to accommodate for this.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:162:5
|
162 | /// Get normalized boundaries for float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:190:5
|
190 | /// Lossy round float-point number to native mantissa boundaries.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:199:5
|
199 | /// Lossy round float-point number to f32 mantissa boundaries.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:208:5
|
208 | /// Lossy round float-point number to f64 mantissa boundaries.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:219:5
|
219 | /// Create extended float from 8-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:227:5
|
227 | /// Create extended float from 8-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:235:5
|
235 | /// Create extended float from 16-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:243:5
|
243 | /// Create extended float from 32-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:251:5
|
251 | /// Create extended float from 64-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:259:5
|
259 | /// Create extended float from native float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:267:5
|
267 | /// Create extended float from 32-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:275:5
|
275 | /// Create extended float from 64-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:285:5
|
285 | /// Convert into lower-precision native float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:299:5
|
299 | /// Convert into lower-precision 32-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:308:5
|
308 | /// Convert into lower-precision 64-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:319:5
|
319 | /// Into rounded float where the rounding kind has been converted.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:338:5
|
338 | /// Convert into lower-precision native float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:347:5
|
347 | /// Convert into lower-precision 32-bit float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:356:5
|
356 | /// Convert into lower-precision 64-bit float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:367:5
|
367 | /// Convert to lower-precision native float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:375:5
|
375 | /// Convert to lower-precision 32-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:384:5
|
384 | /// Convert to lower-precision 64-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:395:5
|
395 | /// Convert to lower-precision native float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:404:5
|
404 | /// Convert to lower-precision 32-bit float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:413:5
|
413 | /// Convert to lower-precision 64-bit float with custom rounding rules.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/float/float.rs:424:5
|
424 | /// Create extended float from 64-bit unsigned integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:105:1
|
105 | /// Implied method to calculate the number of digits from a 32-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:127:1
|
127 | /// Implied method to calculate the number of digits from a 64-bit float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:149:1
|
149 | /// Calculate the maximum number of digits possible in the mantissa.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:150:1
|
150 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:151:1
|
151 | /// Returns the maximum number of digits plus one.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:152:1
|
152 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:153:1
|
153 | /// We can exactly represent a float in radix `b` from radix 2 if
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:154:1
|
154 | /// `b` is divisible by 2. This function calculates the exact number of
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:155:1
|
155 | /// digits required to exactly represent that float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:156:1
|
156 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:157:1
|
157 | /// According to the "Handbook of Floating Point Arithmetic",
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:158:1
|
158 | /// for IEEE754, with emin being the min exponent, p2 being the
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:159:1
|
159 | /// precision, and b being the radix, the number of digits follows as:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:160:1
|
160 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:161:1
|
161 | /// `−emin + p2 + ⌊(emin + 1) log(2, b) − log(1 − 2^(−p2), b)⌋`
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:162:1
|
162 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:163:1
|
163 | /// For f32, this follows as:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:164:1
|
164 | /// emin = -126
| ^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:165:1
|
165 | /// p2 = 24
| ^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:166:1
|
166 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:167:1
|
167 | /// For f64, this follows as:
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:168:1
|
168 | /// emin = -1022
| ^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:169:1
|
169 | /// p2 = 53
| ^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:170:1
|
170 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:171:1
|
171 | /// In Python:
| ^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:172:1
|
172 | /// `-emin + p2 + math.floor((emin+1)*math.log(2, b) - math.log(1-2**(-p2), b))`
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:173:1
|
173 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:174:1
|
174 | /// This was used to calculate the maximum number of digits for [2, 36].
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:219:1
|
219 | /// Custom rounding for truncated mantissa.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:220:1
|
220 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:221:1
|
221 | /// Respect rounding rules in the config file.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bhcomp.rs:257:1
|
257 | /// Check if we need to use bigcomp.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:74:1
|
74 | /// Calculate `b` from a a representation of `b` as a float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:80:1
|
80 | /// Calculate `b+h` from a a representation of `b` as a float.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:92:1
|
92 | /// Generate the theoretical float type for the rounding kind.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:115:1
|
115 | /// Get the appropriate scaling factor from the digit count.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:116:1
|
116 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:117:1
|
117 | /// * `radix` - Radix for the number parsing.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bigcomp.rs:118:1
|
118 | /// * `sci_exponent` - Exponent of basen string in scientific notation.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/bignum.rs:23:1
|
23 | /// Calculate the integral ceiling of the binary factor from a basen number.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs:21:1
|
21 | /// Check if the error is accurate with a round-nearest rounding scheme.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/errors.rs:50:1
|
50 | /// Check if the error is accurate with a round-toward rounding scheme.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:47:1
|
47 | /// Cast to limb type.
| ^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:55:1
|
55 | /// Cast to wide type.
| ^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:63:1
|
63 | /// Cast tosigned wide type.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:74:1
|
74 | /// Split u16 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:80:1
|
80 | /// Split u32 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:86:1
|
86 | /// Split u64 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:93:1
|
93 | /// Split u64 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:100:1
|
100 | /// Split u128 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:107:1
|
107 | /// Split u128 into limbs, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:119:1
|
119 | /// Check if any of the remaining bits are non-zero.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:129:1
|
129 | /// Shift 16-bit integer to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:137:1
|
137 | /// Shift 2 16-bit integers to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:151:1
|
151 | /// Shift 32-bit integer to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:158:1
|
158 | /// Shift 2 32-bit integers to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:165:1
|
165 | /// Shift 64-bit integer to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:172:1
|
172 | /// Shift 2 64-bit integers to high 16-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:187:5
|
187 | /// High-level exporter to extract the high 16 bits from a little-endian slice.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:260:1
|
260 | /// Shift 32-bit integer to high 32-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:268:1
|
268 | /// Shift 2 32-bit integers to high 32-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:282:1
|
282 | /// Shift 64-bit integer to high 32-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:289:1
|
289 | /// Shift 2 64-bit integers to high 32-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:307:5
|
307 | /// High-level exporter to extract the high 32 bits from a little-endian slice.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:400:1
|
400 | /// Shift 64-bit integer to high 64-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:408:1
|
408 | /// Shift 2 64-bit integers to high 64-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:439:5
|
439 | /// High-level exporter to extract the high 64 bits from a little-endian slice.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:583:1
|
583 | /// Shift 128-bit integer to high 128-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:590:1
|
590 | /// Shift 2 128-bit integers to high 128-bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:629:5
|
629 | /// High-level exporter to extract the high 128 bits from a little-endian slice.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:902:1
|
902 | /// Add two small integers and return the resulting value and if overflow happens.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:910:1
|
910 | /// AddAssign two small integers and return if overflow happens.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:922:1
|
922 | /// Subtract two small integers and return the resulting value and if overflow happens.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:930:1
|
930 | /// SubAssign two small integers and return if overflow happens.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:942:1
|
942 | /// Multiply two small integers (with carry) (and return the overflow contribution).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:943:1
|
943 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:944:1
|
944 | /// Returns the (low, high) components.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:956:1
|
956 | /// Multiply two small integers (with carry) (and return if overflow happens).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:968:1
|
968 | /// Divide two small integers (with remainder) (and return the remainder contribution).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:969:1
|
969 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:970:1
|
970 | /// Returns the (value, remainder) components.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:981:1
|
981 | /// DivAssign two small integers and return the remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1007:1
|
1007 | /// Get the number of leading zero values in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1008:1
|
1008 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1014:1
|
1014 | /// Get the number of trailing zero values in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1015:1
|
1015 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1027:1
|
1027 | /// Get number of leading zero bits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1037:1
|
1037 | /// Get number of trailing zero bits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1038:1
|
1038 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1052:1
|
1052 | /// Calculate the bit-length of the big-integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1065:1
|
1065 | /// Calculate the limb-length of the big-integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1073:1
|
1073 | /// Shift-right bits inside a buffer and returns the truncated bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1074:1
|
1074 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1075:1
|
1075 | /// Returns the truncated bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1076:1
|
1076 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1077:1
|
1077 | /// Assumes `n < Limb::BITS`, IE, internally shifting bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1105:1
|
1105 | /// Shift-right `n` limbs inside a buffer and returns if all the truncated limbs are zero.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1106:1
|
1106 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1107:1
|
1107 | /// Assumes `n` is not 0.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1125:1
|
1125 | /// Shift-left buffer by n bits and return if we should round-up.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1168:1
|
1168 | /// Shift-left buffer by n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1182:1
|
1182 | /// Shift-left bits inside a buffer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1183:1
|
1183 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1184:1
|
1184 | /// Assumes `n < Limb::BITS`, IE, internally shifting bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1218:1
|
1218 | /// Shift-left bits inside a buffer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1219:1
|
1219 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1220:1
|
1220 | /// Assumes `n < Limb::BITS`, IE, internally shifting bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1232:1
|
1232 | /// Shift-left `n` digits inside a buffer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1233:1
|
1233 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1234:1
|
1234 | /// Assumes `n` is not 0.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1245:1
|
1245 | /// Shift-left buffer by n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1261:1
|
1261 | /// Shift-left buffer by n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1275:1
|
1275 | /// Normalize the container by popping any leading zeros.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1287:1
|
1287 | /// ADDITION
| ^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1289:1
|
1289 | /// Implied AddAssign implementation for adding a small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1290:1
|
1290 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1291:1
|
1291 | /// Allows us to choose a start-index in x to store, to allow incrementing
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1292:1
|
1292 | /// from a non-zero start.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1318:1
|
1318 | /// AddAssign small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1326:1
|
1326 | /// Add small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1340:1
|
1340 | /// SubAssign small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1341:1
|
1341 | /// Does not do overflowing subtraction.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1360:1
|
1360 | /// SubAssign small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1361:1
|
1361 | /// Does not do overflowing subtraction.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1369:1
|
1369 | /// Sub small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1383:1
|
1383 | /// MulAssign small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1400:1
|
1400 | /// Mul small integer to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1500:1
|
1500 | /// Mul by a power.
| ^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1512:1
|
1512 | /// DIVISION
| ^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1514:1
|
1514 | /// DivAssign small integer to bigint and get the remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1530:1
|
1530 | /// Div small integer to bigint and get the remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1544:1
|
1544 | /// Calculate x^n, using exponentiation by squaring.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1545:1
|
1545 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1546:1
|
1546 | /// This algorithm is slow, using `mul_power` should generally be preferred,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1547:1
|
1547 | /// as although it's not asymptotically faster, it precalculates a lot
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1548:1
|
1548 | /// of results.
| ^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1575:1
|
1575 | /// Calculate x^n, using exponentiation by squaring.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1601:1
|
1601 | /// Compare `x` to `y`, in little-endian order.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1622:1
|
1622 | /// Check if x is greater than y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1628:1
|
1628 | /// Check if x is greater than or equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1634:1
|
1634 | /// Check if x is less than y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1640:1
|
1640 | /// Check if x is less than or equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1646:1
|
1646 | /// Check if x is equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1647:1
|
1647 | /// Slightly optimized for equality comparisons, since it reduces the number
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1648:1
|
1648 | /// of comparisons relative to `compare`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1690:1
|
1690 | /// AddAssign bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1698:1
|
1698 | /// Add bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1739:1
|
1739 | /// Sub bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1789:1
|
1789 | /// Split two buffers into halfway, into (lo, hi).
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1865:1
|
1865 | /// Forwarder to the proper Karatsuba algorithm.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1878:1
|
1878 | /// MulAssign bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1894:1
|
1894 | /// Mul bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1994:1
|
1994 | /// Calculate the quotient from the estimate and the test.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1995:1
|
1995 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1996:1
|
1996 | /// This is a mix of step D5 and D6 in Algorithm D, so the algorithm
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:1997:1
|
1997 | /// may work for single passes, without a quotient buffer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2126:1
|
2126 | /// DivAssign bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2153:1
|
2153 | /// Div bigint to bigint.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2267:5
|
2267 | /// Check if the value is a normalized 0.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2275:5
|
2275 | /// Compare self to y.
| ^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2281:5
|
2281 | /// Check if self is greater than y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2287:5
|
2287 | /// Check if self is greater than or equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2293:5
|
2293 | /// Check if self is less than y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2299:5
|
2299 | /// Check if self is less than or equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2305:5
|
2305 | /// Check if self is equal to y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2313:5
|
2313 | /// Get the number of leading zero digits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2314:5
|
2314 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2320:5
|
2320 | /// Get the number of trailing zero digits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2321:5
|
2321 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2327:5
|
2327 | /// Get number of leading zero bits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2328:5
|
2328 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2334:5
|
2334 | /// Get number of trailing zero bits in the storage.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2335:5
|
2335 | /// Assumes the value is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2341:5
|
2341 | /// Calculate the bit-length of the big-integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2342:5
|
2342 | /// Returns usize::max_value() if the value overflows,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2343:5
|
2343 | /// IE, if `self.data().len() > usize::max_value() / 8`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2349:5
|
2349 | /// Calculate the digit-length of the big-integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2355:5
|
2355 | /// Get the high 16-bits from the bigint and if there are remaining bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2361:5
|
2361 | /// Get the high 32-bits from the bigint and if there are remaining bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2367:5
|
2367 | /// Get the high 64-bits from the bigint and if there are remaining bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2373:5
|
2373 | /// Get the high 128-bits from the bigint and if there are remaining bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2379:5
|
2379 | /// Pad the buffer with zeros to the least-significant bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2390:5
|
2390 | /// Create new big integer from u16.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2400:5
|
2400 | /// Create new big integer from u32.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2410:5
|
2410 | /// Create new big integer from u64.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2420:5
|
2420 | /// Create new big integer from u128.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2432:5
|
2432 | /// Normalize the integer, so any leading zero values are removed.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2438:5
|
2438 | /// Get if the big integer is normalized.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2446:5
|
2446 | /// Shift-left the entire buffer n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2452:5
|
2452 | /// Shift-left the entire buffer n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2460:5
|
2460 | /// Shift-right the entire buffer n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2475:5
|
2475 | /// Shift-right the entire buffer n bits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2488:5
|
2488 | /// Get the small powers from the radix.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2494:5
|
2494 | /// Get the large powers from the radix.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2502:5
|
2502 | /// AddAssign small integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2508:5
|
2508 | /// Add small integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2518:5
|
2518 | /// SubAssign small integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2519:5
|
2519 | /// Warning: Does no overflow checking, x must be >= y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2525:5
|
2525 | /// Sub small integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2526:5
|
2526 | /// Warning: Does no overflow checking, x must be >= y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2536:5
|
2536 | /// MulAssign small integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2542:5
|
2542 | /// Mul small integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2550:5
|
2550 | /// MulAssign by a power.
| ^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2598:5
|
2598 | /// Multiply by a power of 2.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2606:5
|
2606 | /// Multiply by a power of 4.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2614:5
|
2614 | /// Multiply by a power of 6.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2623:5
|
2623 | /// Multiply by a power of 8.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2629:5
|
2629 | /// Multiply by a power of 9.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2636:5
|
2636 | /// Multiply by a power of 10.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2645:5
|
2645 | /// Multiply by a power of 12.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2654:5
|
2654 | /// Multiply by a power of 14.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2661:5
|
2661 | /// Multiply by a power of 15.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2668:5
|
2668 | /// Multiply by a power of 16.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2676:5
|
2676 | /// Multiply by a power of 18.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2685:5
|
2685 | /// Multiply by a power of 20.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2692:5
|
2692 | /// Multiply by a power of 21.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2699:5
|
2699 | /// Multiply by a power of 22.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2708:5
|
2708 | /// Multiply by a power of 24.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2715:5
|
2715 | /// Multiply by a power of 25.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2722:5
|
2722 | /// Multiply by a power of 26.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2729:5
|
2729 | /// Multiply by a power of 27.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2736:5
|
2736 | /// Multiply by a power of 28.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2745:5
|
2745 | /// Multiply by a power of 30.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2754:5
|
2754 | /// Multiply by a power of 32.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2760:5
|
2760 | /// Multiply by a power of 33.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2767:5
|
2767 | /// Multiply by a power of 34.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2774:5
|
2774 | /// Multiply by a power of 35.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2781:5
|
2781 | /// Multiply by a power of 36.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2790:5
|
2790 | /// DivAssign small integer, and return the remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2796:5
|
2796 | /// Div small integer to a copy of self, and return the remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2806:5
|
2806 | /// Calculate self^n
| ^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2812:5
|
2812 | /// Calculate self^n
| ^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2825:5
|
2825 | /// AddAssign large integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2831:5
|
2831 | /// Add large integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2841:5
|
2841 | /// SubAssign large integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2842:5
|
2842 | /// Warning: Does no overflow checking, x must be >= y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2848:5
|
2848 | /// Sub large integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2849:5
|
2849 | /// Warning: Does no overflow checking, x must be >= y.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2859:5
|
2859 | /// MulAssign large integer.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2865:5
|
2865 | /// Mul large integer to a copy of self.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2875:5
|
2875 | /// DivAssign large integer and get remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2883:5
|
2883 | /// Div large integer to a copy of self and get quotient and remainder.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2891:5
|
2891 | /// Calculate the fast quotient for a single limb-bit quotient.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2892:5
|
2892 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2893:5
|
2893 | /// This requires a non-normalized divisor, where there at least
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2894:5
|
2894 | /// `integral_binary_factor` 0 bits set, to ensure at maximum a single
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2895:5
|
2895 | /// digit will be produced for a single base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2896:5
|
2896 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2897:5
|
2897 | /// Warning: This is not a general-purpose division algorithm,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2898:5
|
2898 | /// it is highly specialized for peeling off singular digits.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2604 | imul_power!(imul_pow3, 3);
| -------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2612 | imul_power!(imul_pow5, 5);
| -------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2621 | imul_power!(imul_pow7, 7);
| -------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2643 | imul_power!(imul_pow11, 11);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2652 | imul_power!(imul_pow13, 13);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2674 | imul_power!(imul_pow17, 17);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2683 | imul_power!(imul_pow19, 19);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2706 | imul_power!(imul_pow23, 23);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2743 | imul_power!(imul_pow29, 29);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/atof/algorithm/math.rs:2237:9
|
2237 | /// Multiply by a power of $base.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
2752 | imul_power!(imul_pow31, 31);
| ---------------------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:8:1
|
8 | /// Wrapper for ryu.
| ^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:9:1
|
9 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:10:1
|
10 | /// `f` must be non-special (NaN or infinite), non-negative,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:11:1
|
11 | /// and non-zero.
| ^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:23:1
|
23 | /// Wrapper for ryu.
| ^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:24:1
|
24 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:25:1
|
25 | /// `d` must be non-special (NaN or infinite), non-negative,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/lexical-core-0.7.4/src/ftoa/ryu.rs:26:1
|
26 | /// and non-zero.
| ^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
Compiling net2 v0.2.35
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=net2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.35 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Extensions to the standard library'\''s networking types as proposed in RFC 1158.
' CARGO_PKG_HOMEPAGE='https://github.com/deprecrated/net2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=net2 CARGO_PKG_REPOSITORY='https://github.com/deprecrated/net2-rs' CARGO_PKG_VERSION=0.2.35 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=35 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name net2 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/net2-0.2.35/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="duration"' -C metadata=825b308582057c15 -C extra-filename=-825b308582057c15 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling signal-hook-registry v1.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=signal_hook_registry CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.2.1 CARGO_PKG_AUTHORS='Michal '\''vorner'\'' Vaner <vorner@vorner.cz>:Masaki Hara <ackie.h.gmai@gmail.com>' CARGO_PKG_DESCRIPTION='Backend crate for signal-hook' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=signal-hook-registry CARGO_PKG_REPOSITORY='https://github.com/vorner/signal-hook' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name signal_hook_registry /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=40fdb1091117ff21 -C extra-filename=-40fdb1091117ff21 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern arc_swap=/home/pi/deno/target/debug/deps/libarc_swap-998d691e37b19e7f.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling time v0.1.44
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=time CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.44 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Utilities for working with time-related functions in Rust.
' CARGO_PKG_HOMEPAGE='https://github.com/time-rs/time' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=time CARGO_PKG_REPOSITORY='https://github.com/time-rs/time' CARGO_PKG_VERSION=0.1.44 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=44 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name time /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/time-0.1.44/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7e19902a4bd44ce3 -C extra-filename=-7e19902a4bd44ce3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling socket2 v0.3.15
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=socket2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.15 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Utilities for handling networking sockets with a maximal amount of configuration
possible intended.
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/socket2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=socket2 CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/socket2-rs' CARGO_PKG_VERSION=0.3.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name socket2 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=48c5f5bd531a4481 -C extra-filename=-48c5f5bd531a4481 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling rand_os v0.1.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_os CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='OS backed Random Number Generator' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_os' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_os CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_os /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=878218fa727171b5 -C extra-filename=-878218fa727171b5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-ce047d2d5f752996.rmeta --cap-lints warn`
warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/random_device.rs:17:30
|
17 | use std::sync::{Once, Mutex, ONCE_INIT};
| ^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/random_device.rs:21:30
|
21 | static READ_RNG_ONCE: Once = ONCE_INIT;
| ^^^^^^^^^ help: replace the use of the deprecated constant: `Once::new()`
warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/linux_android.rs:24:23
|
24 | use std::sync::{Once, ONCE_INIT};
| ^^^^^^^^^
warning: use of deprecated constant `std::sync::ONCE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/linux_android.rs:165:28
|
165 | static CHECKER: Once = ONCE_INIT;
| ^^^^^^^^^ help: replace the use of the deprecated constant: `Once::new()`
warning: 4 warnings emitted
Compiling atty v0.2.14
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=atty CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14 CARGO_PKG_AUTHORS='softprops <d.tangren@gmail.com>' CARGO_PKG_DESCRIPTION='A simple interface for querying atty' CARGO_PKG_HOMEPAGE='https://github.com/softprops/atty' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=atty CARGO_PKG_REPOSITORY='https://github.com/softprops/atty' CARGO_PKG_VERSION=0.2.14 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=14 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name atty /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/atty-0.2.14/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d828f0ebdbb44ca8 -C extra-filename=-d828f0ebdbb44ca8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling errno v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=errno CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.1.8 CARGO_PKG_AUTHORS='Chris Wong <lambda.fairy@gmail.com>' CARGO_PKG_DESCRIPTION='Cross-platform interface to the `errno` variable.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=errno CARGO_PKG_REPOSITORY='https://github.com/lfairy/rust-errno' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name errno /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=61925dfee3067c3d -C extra-filename=-61925dfee3067c3d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: unused import: `std::str`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/errno-0.1.8/src/unix.rs:17:5
|
17 | use std::str;
| ^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
Compiling inotify-sys v0.1.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=inotify_sys CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3 CARGO_PKG_AUTHORS='Hanno Braun <hb@hannobraun.de>' CARGO_PKG_DESCRIPTION='inotify bindings for the Rust programming language' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=inotify-sys CARGO_PKG_REPOSITORY='https://github.com/inotify-rs/inotify-sys' CARGO_PKG_VERSION=0.1.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name inotify_sys /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fb64894de3e5a9e8 -C extra-filename=-fb64894de3e5a9e8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: unnecessary parentheses around assigned value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:308:31
|
308 | pub const IN_MOVE: uint32_t = (IN_MOVED_FROM | IN_MOVED_TO);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
|
note: the lint level is defined here
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:2:9
|
2 | #![deny(warnings)]
| ^^^^^^^^
= note: `#[warn(unused_parens)]` implied by `#[warn(warnings)]`
warning: unnecessary parentheses around assigned value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:326:32
|
326 | pub const IN_CLOSE: uint32_t = (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around assigned value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:366:37
|
366 | pub const IN_ALL_EVENTS: uint32_t = (
| _____________________________________^
367 | | IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | IN_CLOSE_NOWRITE
368 | | | IN_OPEN | IN_MOVED_FROM | IN_MOVED_TO | IN_CREATE | IN_DELETE
369 | | | IN_DELETE_SELF | IN_MOVE_SELF);
| |____________________________________^
|
help: remove these parentheses
|
366 | pub const IN_ALL_EVENTS: uint32_t = IN_ACCESS | IN_MODIFY | IN_ATTRIB | IN_CLOSE_WRITE | IN_CLOSE_NOWRITE
367 | | IN_OPEN | IN_MOVED_FROM | IN_MOVED_TO | IN_CREATE | IN_DELETE
368 | | IN_DELETE_SELF | IN_MOVE_SELF;
|
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:39:5
|
39 | uint32_t };
| ^^^^^^^^
|
note: the lint level is defined here
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:2:9
|
2 | #![deny(warnings)]
| ^^^^^^^^
= note: `#[warn(deprecated)]` implied by `#[warn(warnings)]`
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:86:22
|
86 | pub const IN_ACCESS: uint32_t = 0x00000001;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:103:22
|
103 | pub const IN_MODIFY: uint32_t = 0x00000002;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:134:22
|
134 | pub const IN_ATTRIB: uint32_t = 0x00000004;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:151:27
|
151 | pub const IN_CLOSE_WRITE: uint32_t = 0x00000008;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:168:29
|
168 | pub const IN_CLOSE_NOWRITE: uint32_t = 0x00000010;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:185:20
|
185 | pub const IN_OPEN: uint32_t = 0x00000020;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:200:26
|
200 | pub const IN_MOVED_FROM: uint32_t = 0x00000040;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:217:24
|
217 | pub const IN_MOVED_TO: uint32_t = 0x00000080;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:236:22
|
236 | pub const IN_CREATE: uint32_t = 0x00000100;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:255:22
|
255 | pub const IN_DELETE: uint32_t = 0x00000200;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:276:27
|
276 | pub const IN_DELETE_SELF: uint32_t = 0x00000400;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:290:25
|
290 | pub const IN_MOVE_SELF: uint32_t = 0x00000800;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:308:20
|
308 | pub const IN_MOVE: uint32_t = (IN_MOVED_FROM | IN_MOVED_TO);
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:326:21
|
326 | pub const IN_CLOSE: uint32_t = (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE);
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:366:26
|
366 | pub const IN_ALL_EVENTS: uint32_t = (
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:380:23
|
380 | pub const IN_ONLYDIR: uint32_t = 0x01000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:391:27
|
391 | pub const IN_DONT_FOLLOW: uint32_t = 0x02000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:402:27
|
402 | pub const IN_EXCL_UNLINK: uint32_t = 0x04000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:413:24
|
413 | pub const IN_MASK_ADD: uint32_t = 0x20000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:424:23
|
424 | pub const IN_ONESHOT: uint32_t = 0x80000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:436:21
|
436 | pub const IN_ISDIR: uint32_t = 0x40000000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:451:23
|
451 | pub const IN_UNMOUNT: uint32_t = 0x00002000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:463:26
|
463 | pub const IN_Q_OVERFLOW: uint32_t = 0x00004000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:481:23
|
481 | pub const IN_IGNORED: uint32_t = 0x00008000;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:694:72
|
694 | pub fn inotify_add_watch(fd: c_int, pathname: *const c_char, mask: uint32_t) -> c_int;
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:558:15
|
558 | pub mask: uint32_t,
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:568:17
|
568 | pub cookie: uint32_t,
| ^^^^^^^^
warning: use of deprecated type alias `libc::uint32_t`: Use u32 instead.
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-sys-0.1.3/src/lib.rs:584:14
|
584 | pub len: uint32_t,
| ^^^^^^^^
warning: 32 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=nix CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0 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_REPOSITORY='https://github.com/nix-rust/nix' CARGO_PKG_VERSION=0.18.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=18 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/nix-49551f008b2b5a99/out rustc --crate-name nix --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=b2177ff6f11174db -C extra-filename=-b2177ff6f11174db --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: 1 warning emitted
Compiling os_pipe v0.9.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=os_pipe CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-0.9.2 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_REPOSITORY='https://github.com/oconnor663/os_pipe.rs' CARGO_PKG_VERSION=0.9.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name os_pipe --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/os_pipe-0.9.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=2a481ec72aaf60d5 -C extra-filename=-2a481ec72aaf60d5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
Compiling filetime v0.2.12
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=filetime CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.12 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Platform-agnostic accessors of timestamps in File metadata
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/filetime' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=filetime CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/filetime' CARGO_PKG_VERSION=0.2.12 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=12 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name filetime --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.12/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0dbd4ede426c4e0e -C extra-filename=-0dbd4ede426c4e0e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: function is never used: `to_timespec`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/filetime-0.2.12/src/unix/utimes.rs:121:4
|
121 | fn to_timespec(ft: &FileTime) -> libc::timespec {
| ^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: 1 warning emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=sys_info CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sys-info-0.7.0 CARGO_PKG_AUTHORS='Siyu Wang <FillZpp.pub@gmail.com>' CARGO_PKG_DESCRIPTION='Get system information in Rust.
For now it supports Linux, Mac OS X, illumos, Solaris, FreeBSD, and Windows.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sys-info CARGO_PKG_REPOSITORY='https://github.com/FillZpp/sys-info-rs' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out rustc --crate-name sys_info /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sys-info-0.7.0/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=9184dcb10fba3e76 -C extra-filename=-9184dcb10fba3e76 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/sys-info-0661c7d8287c3efa/out -l static=info`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_pcg CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='Selected PCG random number generators
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_pcg' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_pcg CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/rand_pcg-7736aaaf3fd4aa4e/out rustc --crate-name rand_pcg /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=a6bd8f47682b15bb -C extra-filename=-a6bd8f47682b15bb --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-ce047d2d5f752996.rmeta --cap-lints warn --cfg rustc_1_26`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='ChaCha random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_chacha' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/rand_chacha-973a4c4c879b0b17/out rustc --crate-name rand_chacha /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=87ecff9cee2e0560 -C extra-filename=-87ecff9cee2e0560 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-5e310b0d7db91be2.rmeta --cap-lints warn --cfg rustc_1_26`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.4 CARGO_PKG_AUTHORS='Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' CARGO_PKG_VERSION=0.14.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/generic-array-27f7910dc0ebe014/out rustc --crate-name generic_array /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.14.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=71256d94e7b20624 -C extra-filename=-71256d94e7b20624 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern typenum=/home/pi/deno/target/debug/deps/libtypenum-494752bcbcf13f23.rmeta --cap-lints warn --cfg relaxed_coherence`
warning: 329 warnings emitted
Compiling generic-array v0.12.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=generic_array CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3 CARGO_PKG_AUTHORS='Bartłomiej Kamiński <fizyk20@gmail.com>:Aaron Trent <novacrazy@gmail.com>' CARGO_PKG_DESCRIPTION='Generic types implementing functionality of arrays' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=generic-array CARGO_PKG_REPOSITORY='https://github.com/fizyk20/generic-array.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name generic_array /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6b202d5b2cf22a2f -C extra-filename=-6b202d5b2cf22a2f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern typenum=/home/pi/deno/target/debug/deps/libtypenum-494752bcbcf13f23.rmeta --cap-lints warn`
warning: use of deprecated function `core::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/lib.rs:186:38
|
186 | array: ManuallyDrop::new(mem::uninitialized()),
| ^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated function `core::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/iter.rs:99:42
|
99 | array: ManuallyDrop::new(mem::uninitialized()),
| ^^^^^^^^^^^^^^^^^^
warning: use of deprecated function `core::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/sequence.rs:189:49
|
189 | let mut longer: Self::Longer = unsafe { mem::uninitialized() };
| ^^^^^^^^^^^^^^^^^^
warning: use of deprecated function `core::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/sequence.rs:200:49
|
200 | let mut longer: Self::Longer = unsafe { mem::uninitialized() };
| ^^^^^^^^^^^^^^^^^^
warning: use of deprecated function `core::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/generic-array-0.12.3/src/sequence.rs:309:49
|
309 | let mut output: Self::Output = unsafe { mem::uninitialized() };
| ^^^^^^^^^^^^^^^^^^
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ring CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15 CARGO_PKG_AUTHORS='Brian Smith <brian@briansmith.org>' CARGO_PKG_DESCRIPTION='Safe, fast, small crypto using Rust.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=ring CARGO_PKG_REPOSITORY='https://github.com/briansmith/ring' CARGO_PKG_VERSION=0.16.15 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=16 CARGO_PKG_VERSION_PATCH=15 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out rustc --crate-name ring --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ring-0.16.15/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="dev_urandom_fallback"' --cfg 'feature="once_cell"' -C metadata=e711d2390e5047f2 -C extra-filename=-e711d2390e5047f2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern once_cell=/home/pi/deno/target/debug/deps/libonce_cell-65477b46ede36c3e.rmeta --extern spin=/home/pi/deno/target/debug/deps/libspin-3209d78048a47363.rmeta --extern untrusted=/home/pi/deno/target/debug/deps/libuntrusted-5e99d33802ca41bc.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out -l static=ring-core -l static=ring-test`
Compiling quote v0.6.13
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=quote CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/quote' CARGO_PKG_VERSION=0.6.13 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=13 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name quote /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="proc-macro"' -C metadata=81c0de149c988516 -C extra-filename=-81c0de149c988516 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-8ec8e32a8fd78b3e.rmeta --cap-lints warn`
warning: 5 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.41 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_VERSION=1.0.41 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=41 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/syn-627d1c73f1d91905/out rustc --crate-name syn --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-1.0.41/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="clone-impls"' --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="extra-traits"' --cfg 'feature="fold"' --cfg 'feature="full"' --cfg 'feature="parsing"' --cfg 'feature="printing"' --cfg 'feature="proc-macro"' --cfg 'feature="quote"' --cfg 'feature="visit"' --cfg 'feature="visit-mut"' -C metadata=f4aa7e2af99c1cfb -C extra-filename=-f4aa7e2af99c1cfb --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rmeta --extern unicode_xid=/home/pi/deno/target/debug/deps/libunicode_xid-4894bad51f05f12f.rmeta --cap-lints warn --cfg syn_disable_nightly_tests`
Compiling brotli v3.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=brotli CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0 CARGO_PKG_AUTHORS='Daniel Reiter Horn <danielrh@dropbox.com>:The Brotli Authors' CARGO_PKG_DESCRIPTION='A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib'\''s allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe.' CARGO_PKG_HOMEPAGE='https://github.com/dropbox/rust-brotli' CARGO_PKG_LICENSE=BSD-3-Clause/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=brotli CARGO_PKG_REPOSITORY='https://github.com/dropbox/rust-brotli' CARGO_PKG_VERSION=3.3.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name brotli /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc-stdlib"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=f2cd94c65554b27c -C extra-filename=-f2cd94c65554b27c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern alloc_no_stdlib=/home/pi/deno/target/debug/deps/liballoc_no_stdlib-5eb096fc2bc1bc1a.rmeta --extern alloc_stdlib=/home/pi/deno/target/debug/deps/liballoc_stdlib-86624371302b2caf.rmeta --extern brotli_decompressor=/home/pi/deno/target/debug/deps/libbrotli_decompressor-3c67339df0330fd3.rmeta --cap-lints warn`
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/input_pair.rs:93:13
|
93 | try!( fmtr.write_fmt(format_args!("{:02x}", item)));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/input_pair.rs:96:13
|
96 | try!( fmtr.write_fmt(format_args!("{:02x}", item)));
| ^^^
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/threading.rs:27:48
|
27 | pub type LowLevelThreadError = std::boxed::Box<any::Any + Send + 'static>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn any::Any + Send + 'static`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/histogram.rs:101:3
|
101 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_attributes)]` on by default
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/histogram.rs:103:3
|
103 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/histogram.rs:105:3
|
105 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/histogram.rs:107:3
|
107 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:641:3
|
641 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:643:3
|
643 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:645:3
|
645 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:647:3
|
647 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:649:3
|
649 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:651:5
|
651 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:653:5
|
653 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:655:5
|
655 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:657:5
|
657 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:659:5
|
659 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
warning: `#[inline]` is ignored on function prototypes
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/backward_references/mod.rs:661:3
|
661 | #[inline(always)]
| ^^^^^^^^^^^^^^^^^
Compiling regex v1.3.9
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=regex CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='An implementation of regular expressions for Rust. This implementation uses
finite automata and guarantees linear time matching on all inputs.
' CARGO_PKG_HOMEPAGE='https://github.com/rust-lang/regex' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=regex CARGO_PKG_REPOSITORY='https://github.com/rust-lang/regex' CARGO_PKG_VERSION=1.3.9 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=9 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name regex /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/regex-1.3.9/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="aho-corasick"' --cfg 'feature="default"' --cfg 'feature="memchr"' --cfg 'feature="perf"' --cfg 'feature="perf-cache"' --cfg 'feature="perf-dfa"' --cfg 'feature="perf-inline"' --cfg 'feature="perf-literal"' --cfg 'feature="std"' --cfg 'feature="thread_local"' --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"' -C metadata=970ea3d0de1cd2ad -C extra-filename=-970ea3d0de1cd2ad --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern aho_corasick=/home/pi/deno/target/debug/deps/libaho_corasick-ce9d52a2241993bf.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern regex_syntax=/home/pi/deno/target/debug/deps/libregex_syntax-3ed7665b7abd6605.rmeta --extern thread_local=/home/pi/deno/target/debug/deps/libthread_local-2621e64df45310aa.rmeta --cap-lints warn`
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/quota.rs:25:9
|
25 | unsafe { libc::QCMD(self.0 as i32, self.1 as i32) }
| ^^^^^^ unnecessary `unsafe` block
|
note: the lint level is defined here
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/lib.rs:13:9
|
13 | #![deny(unused)]
| ^^^^^^
= note: `#[warn(unused_unsafe)]` implied by `#[warn(unused)]`
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:121:5
|
121 | unsafe { libc::WIFEXITED(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:125:5
|
125 | unsafe { libc::WEXITSTATUS(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:129:5
|
129 | unsafe { libc::WIFSIGNALED(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:133:22
|
133 | Signal::try_from(unsafe { libc::WTERMSIG(status) })
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:137:5
|
137 | unsafe { libc::WCOREDUMP(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:141:5
|
141 | unsafe { libc::WIFSTOPPED(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:145:22
|
145 | Signal::try_from(unsafe { libc::WSTOPSIG(status) })
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:154:5
|
154 | unsafe { libc::WSTOPSIG(status) == libc::SIGTRAP | 0x80 }
| ^^^^^^ unnecessary `unsafe` block
warning: unnecessary `unsafe` block
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nix-0.18.0/src/sys/wait.rs:163:5
|
163 | unsafe { libc::WIFCONTINUED(status) }
| ^^^^^^ unnecessary `unsafe` block
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/bit_cost.rs:200:11
|
200 | let mut cur = &mut depth_histo[j];
| ----^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` on by default
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/histogram.rs:441:9
|
441 | let mut h0val = &mut h0[i];
| ----^^^^^
| |
| help: remove this `mut`
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/block_splitter.rs:320:11
|
320 | let mut block_id_ptr = &mut block_id[byte_ix];
| ----^^^^^^^^^^^^
| |
| help: remove this `mut`
warning: variable does not need to be mutable
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/find_stride.rs:559:14
|
559 | for (mut obe, be) in old_bit_entropy.iter_mut().zip(self.pop.iter_mut()) {
| ----^^^
| |
| help: remove this `mut`
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:43:3
|
43 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:57:3
|
57 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:65:5
|
65 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:75:5
|
75 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:83:5
|
83 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:86:5
|
86 | core::mem::replace(commands, &mut remainder2[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:95:5
|
95 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:98:5
|
98 | core::mem::replace(commands, &mut remainder2[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:104:5
|
104 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:107:5
|
107 | core::mem::replace(commands, &mut remainder2[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:141:3
|
141 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:271:9
|
271 | core::mem::replace(literals, &mut new_literals[(insert as usize)..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/compress_fragment_two_pass.rs:275:11
|
275 | core::mem::replace(commands, &mut remainder[1..]);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/encode.rs:761:3
|
761 | core::mem::replace(&mut (*rb).data_mo, new_data);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/brotli-3.3.0/src/enc/encode.rs:1539:5
|
1539 | core::mem::replace(m8, s_orig.m8);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 10 warnings emitted
Compiling crossbeam-channel v0.4.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=crossbeam_channel CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.4.4 CARGO_PKG_AUTHORS='The Crossbeam Project Developers' CARGO_PKG_DESCRIPTION='Multi-producer multi-consumer channels for message passing' CARGO_PKG_HOMEPAGE='https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-channel' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=crossbeam-channel CARGO_PKG_REPOSITORY='https://github.com/crossbeam-rs/crossbeam' CARGO_PKG_VERSION=0.4.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name crossbeam_channel /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/crossbeam-channel-0.4.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6126270ac2e750df -C extra-filename=-6126270ac2e750df --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern crossbeam_utils=/home/pi/deno/target/debug/deps/libcrossbeam_utils-c5ab5407a8df4820.rmeta --extern maybe_uninit=/home/pi/deno/target/debug/deps/libmaybe_uninit-fcfcefde17ed1171.rmeta --cap-lints warn`
Compiling flate2 v1.0.17
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=flate2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.17 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='DEFLATE compression and decompression exposed as Read/BufRead/Write streams.
Supports miniz_oxide, miniz.c, and multiple zlib implementations. Supports
zlib, gzip, and raw deflate streams.
' CARGO_PKG_HOMEPAGE='https://github.com/alexcrichton/flate2-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=flate2 CARGO_PKG_REPOSITORY='https://github.com/alexcrichton/flate2-rs' CARGO_PKG_VERSION=1.0.17 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=17 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name flate2 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.17/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="miniz_oxide"' --cfg 'feature="rust_backend"' -C metadata=f4c6edf4adb26898 -C extra-filename=-f4c6edf4adb26898 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern crc32fast=/home/pi/deno/target/debug/deps/libcrc32fast-d6cf3a4689ff9180.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern miniz_oxide=/home/pi/deno/target/debug/deps/libminiz_oxide-2847bdcce648d1be.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=num_integer CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.43 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Integer traits and functions' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-integer' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-integer CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-integer' CARGO_PKG_VERSION=0.1.43 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=43 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/num-integer-0d8d35c8c3f36a99/out rustc --crate-name num_integer /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-integer-0.1.43/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=faa83fcd3d5c7ed7 -C extra-filename=-faa83fcd3d5c7ed7 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern num_traits=/home/pi/deno/target/debug/deps/libnum_traits-585bf529f7058ba5.rmeta --cap-lints warn --cfg has_i128`
Compiling ordered-float v1.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ordered_float CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.0 CARGO_PKG_AUTHORS='Jonathan Reem <jonathan.reem@gmail.com>:Matt Brubeck <mbrubeck@limpet.net>' CARGO_PKG_DESCRIPTION='Wrappers for total ordering on floats' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ordered-float CARGO_PKG_REPOSITORY='https://github.com/reem/rust-ordered-float' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ordered_float /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ordered-float-1.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=deeb4ffdc29f4e68 -C extra-filename=-deeb4ffdc29f4e68 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern num_traits=/home/pi/deno/target/debug/deps/libnum_traits-585bf529f7058ba5.rmeta --cap-lints warn`
Compiling mime_guess v2.0.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.3 CARGO_PKG_AUTHORS='Austin Bonander <austin.bonander@gmail.com>' CARGO_PKG_DESCRIPTION='A simple crate for detection of a file'\''s MIME type by its extension.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mime_guess CARGO_PKG_REPOSITORY='https://github.com/abonander/mime_guess' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.3/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="rev-mappings"' -C metadata=57786741ed2894db -C extra-filename=-57786741ed2894db --out-dir /home/pi/deno/target/debug/build/mime_guess-57786741ed2894db -L dependency=/home/pi/deno/target/debug/deps --extern unicase=/home/pi/deno/target/debug/deps/libunicase-f931e18ada7a98b1.rlib --cap-lints warn`
Compiling rand_core v0.5.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Core random number generator traits and tools for implementation.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_core' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_core CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_core --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="getrandom"' --cfg 'feature="std"' -C metadata=a7b6164692e69399 -C extra-filename=-a7b6164692e69399 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern getrandom=/home/pi/deno/target/debug/deps/libgetrandom-ad28ed35378d1a64.rmeta --cap-lints warn`
Compiling const-random-macro v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=const_random_macro CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/const-random-macro-0.1.8 CARGO_PKG_AUTHORS='Tom Kaitchuck <Tom.Kaitchuck@gmail.com>' CARGO_PKG_DESCRIPTION='Provides the procedural macro used by const-random' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=const-random-macro CARGO_PKG_REPOSITORY='https://github.com/tkaitchuck/constrandom' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name const_random_macro --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/const-random-macro-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=06e328b1efce3dbf -C extra-filename=-06e328b1efce3dbf --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern getrandom=/home/pi/deno/target/debug/deps/libgetrandom-ad28ed35378d1a64.rlib --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --extern proc_macro --cap-lints warn`
Compiling mio v0.6.22
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=mio CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.22 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>' CARGO_PKG_DESCRIPTION='Lightweight non-blocking IO' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/mio' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/mio' CARGO_PKG_VERSION=0.6.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name mio /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-0.6.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="with-deprecated"' -C metadata=70f3c024c8c2de74 -C extra-filename=-70f3c024c8c2de74 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern iovec=/home/pi/deno/target/debug/deps/libiovec-6905482cd25d8b2c.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern net2=/home/pi/deno/target/debug/deps/libnet2-825b308582057c15.rmeta --extern slab=/home/pi/deno/target/debug/deps/libslab-0c4e8517bcd1e211.rmeta --cap-lints warn`
Compiling clap v2.33.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=clap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3 CARGO_PKG_AUTHORS='Kevin K. <kbknapp@gmail.com>' CARGO_PKG_DESCRIPTION='A simple to use, efficient, and full-featured Command Line Argument Parser
' CARGO_PKG_HOMEPAGE='https://clap.rs/' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=clap CARGO_PKG_REPOSITORY='https://github.com/clap-rs/clap' CARGO_PKG_VERSION=2.33.3 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=33 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name clap /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="ansi_term"' --cfg 'feature="atty"' --cfg 'feature="color"' --cfg 'feature="default"' --cfg 'feature="strsim"' --cfg 'feature="suggestions"' --cfg 'feature="vec_map"' -C metadata=a6ba6ee6449cfac8 -C extra-filename=-a6ba6ee6449cfac8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ansi_term=/home/pi/deno/target/debug/deps/libansi_term-9999ea502bc00d33.rmeta --extern atty=/home/pi/deno/target/debug/deps/libatty-d828f0ebdbb44ca8.rmeta --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern strsim=/home/pi/deno/target/debug/deps/libstrsim-5eb0c166fd3a63cb.rmeta --extern textwrap=/home/pi/deno/target/debug/deps/libtextwrap-8489c97c914be4fa.rmeta --extern unicode_width=/home/pi/deno/target/debug/deps/libunicode_width-fbbe897f9c536b45.rmeta --extern vec_map=/home/pi/deno/target/debug/deps/libvec_map-122ddc762560ff43.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:43:27
|
43 | fn as_base(&self) -> &ArgWithDisplay<'b, 'c>;
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:49:27
|
49 | fn as_base(&self) -> &ArgWithDisplay<'b, 'c> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:54:61
|
54 | fn as_arg_trait<'a, 'b, T: ArgWithOrder<'a, 'b>>(x: &T) -> &ArgWithOrder<'a, 'b> {
| ^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithOrder<'a, 'b>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:85:21
|
85 | writer: &'a mut Write,
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:101:20
|
101 | w: &'a mut Write,
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:141:38
|
141 | pub fn write_app_help(w: &'a mut Write, app: &App, use_long: bool) -> ClapResult<()> {
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:148:41
|
148 | pub fn write_parser_help(w: &'a mut Write, parser: &Parser, use_long: bool) -> ClapResult<()> {
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:156:51
|
156 | pub fn write_parser_help_to_stderr(w: &'a mut Write, parser: &Parser) -> ClapResult<()> {
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:163:20
|
163 | w: &'a mut Write,
| ^^^^^ help: use `dyn`: `dyn Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:208:32
|
208 | I: Iterator<Item = &'d ArgWithOrder<'b, 'c>>,
| ^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithOrder<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:236:32
|
236 | I: Iterator<Item = &'d ArgWithOrder<'b, 'c>>,
| ^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithOrder<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:273:43
|
273 | fn write_arg<'b, 'c>(&mut self, arg: &ArgWithDisplay<'b, 'c>) -> io::Result<()> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:283:39
|
283 | fn short<'b, 'c>(&mut self, arg: &ArgWithDisplay<'b, 'c>) -> io::Result<()> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:296:38
|
296 | fn long<'b, 'c>(&mut self, arg: &ArgWithDisplay<'b, 'c>) -> io::Result<()> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:325:37
|
325 | fn val<'b, 'c>(&mut self, arg: &ArgWithDisplay<'b, 'c>) -> Result<String, io::Error> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:453:38
|
453 | fn help<'b, 'c>(&mut self, arg: &ArgWithDisplay<'b, 'c>, spec_vals: &str) -> io::Result<()> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay<'b, 'c>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:511:29
|
511 | fn spec_vals(&self, a: &ArgWithDisplay) -> String {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithDisplay`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/help.rs:579:42
|
579 | fn should_show_arg(use_long: bool, arg: &ArgWithOrder) -> bool {
| ^^^^^^^^^^^^ help: use `dyn`: `dyn ArgWithOrder`
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:149:17
|
149 | / (self.flags.iter().any(|f| &f.b.name == arg)
150 | | || self.opts.iter().any(|o| &o.b.name == arg)
151 | | || self.positionals.values().any(|p| &p.b.name == arg)
152 | | || self.groups.iter().any(|g| &g.name == arg))
| |__________________________________________________________________^
|
= note: `#[warn(unused_parens)]` on by default
help: remove these parentheses
|
149 | self.flags.iter().any(|f| &f.b.name == arg)
150 | || self.opts.iter().any(|o| &o.b.name == arg)
151 | || self.positionals.values().any(|p| &p.b.name == arg)
152 | || self.groups.iter().any(|g| &g.name == arg)
|
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:200:13
|
200 | (self.positionals.len() + 1)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:309:17
|
309 | (self.positionals.len() + 1)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:334:17
|
334 | (self.positionals.len() + 1)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:842:17
|
842 | (o.is_set(ArgSettings::AllowLeadingHyphen) || app_wide_settings)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:850:17
|
850 | (p.is_set(ArgSettings::AllowLeadingHyphen) || app_wide_settings)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:964:39
|
964 | let any_arg = find_any_by_name!(self, self.cache.unwrap_or(""));
| ------------------------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:1110:39
|
1110 | let any_arg = find_any_by_name!(self, self.cache.unwrap_or(""));
| ------------------------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:1238:27
|
1238 | let any_arg = find_any_by_name!(self, self.cache.unwrap_or(""));
| ------------------------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:2168:55
|
2168 | pub fn find_any_arg(&self, name: &str) -> Option<&AnyArg<'a, 'b>> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:214:32
|
214 | if let Some(arg) = find_any_by_name!(self.0, name) {
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:231:39
|
231 | if let Some(bl) = find_any_by_name!(self.0, *arg).unwrap().blacklist() {
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unnecessary parentheses around block return value
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:364:25
|
364 | (ma.vals.len() % num as usize)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these parentheses
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/macros.rs:972:63
|
972 | fn as_trait_obj<'a, 'b, T: AnyArg<'a, 'b>>(x: &T) -> &AnyArg<'a, 'b> {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
|
::: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:467:37
|
467 | } else if let Some(a) = find_any_by_name!(self.0, *name) {
| -------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:508:42
|
508 | fn validate_arg_conflicts(&self, a: &AnyArg, matcher: &ArgMatcher) -> Option<bool> {
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:523:44
|
523 | fn validate_required_unless(&self, a: &AnyArg, matcher: &ArgMatcher) -> Option<bool> {
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/validator.rs:578:42
|
578 | fn is_missing_required_ok(&self, a: &AnyArg, matcher: &ArgMatcher) -> bool {
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/mod.rs:1844:39
|
1844 | fn validator(&self) -> Option<&Rc<Fn(String) -> StdResult<(), String>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> StdResult<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/mod.rs:1847:42
|
1847 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> StdResult<(), OsString>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> StdResult<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/any_arg.rs:26:39
|
26 | fn validator(&self) -> Option<&Rc<Fn(String) -> Result<(), String>>>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> Result<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/any_arg.rs:27:42
|
27 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> Result<(), OsString>>>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> Result<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/any_arg.rs:89:39
|
89 | fn validator(&self) -> Option<&Rc<Fn(String) -> Result<(), String>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> Result<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/any_arg.rs:92:42
|
92 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> Result<(), OsString>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> Result<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/flag.rs:103:39
|
103 | fn validator(&self) -> Option<&Rc<Fn(String) -> StdResult<(), String>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> StdResult<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/flag.rs:106:42
|
106 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> StdResult<(), OsString>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> StdResult<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/option.rs:156:39
|
156 | fn validator(&self) -> Option<&Rc<Fn(String) -> StdResult<(), String>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> StdResult<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/option.rs:159:42
|
159 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> StdResult<(), OsString>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> StdResult<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/positional.rs:177:39
|
177 | fn validator(&self) -> Option<&Rc<Fn(String) -> StdResult<(), String>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> StdResult<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/positional.rs:180:42
|
180 | fn validator_os(&self) -> Option<&Rc<Fn(&OsStr) -> StdResult<(), OsString>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> StdResult<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/valued.rs:19:30
|
19 | pub validator: Option<Rc<Fn(String) -> Result<(), String>>>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(String) -> Result<(), String>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_builder/valued.rs:20:33
|
20 | pub validator_os: Option<Rc<Fn(&OsStr) -> Result<(), OsString>>>,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Fn(&OsStr) -> Result<(), OsString>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_matcher.rs:30:20
|
30 | a: Option<&AnyArg<'a, 'b>>,
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg_matcher.rs:75:60
|
75 | pub fn handle_self_overrides<'b>(&mut self, a: Option<&AnyArg<'a, 'b>>) {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn AnyArg<'a, 'b>`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:412:15
|
412 | arg: &AnyArg,
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:450:33
|
450 | pub fn empty_value<U>(arg: &AnyArg, usage: U, color: ColorWhen) -> Self
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:478:15
|
478 | arg: &AnyArg,
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:663:48
|
663 | pub fn too_many_values<V, U>(val: V, arg: &AnyArg, usage: U, color: ColorWhen) -> Self
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:692:15
|
692 | arg: &AnyArg,
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:725:42
|
725 | pub fn value_validation(arg: Option<&AnyArg>, err: String, color: ColorWhen) -> Self {
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:748:24
|
748 | let n: Option<&AnyArg> = None;
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:754:15
|
754 | arg: &AnyArg,
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:789:47
|
789 | pub fn unexpected_multiple_usage<U>(arg: &AnyArg, usage: U, color: ColorWhen) -> Self
| ^^^^^^ help: use `dyn`: `dyn AnyArg`
warning: use of deprecated associated function `bitflags::core::str::<impl str>::trim_left_matches`: superseded by `trim_start_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:96:14
|
96 | .trim_left_matches(|c| c == '-')
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_start_matches`
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `bitflags::core::str::<impl str>::trim_left_matches`: superseded by `trim_start_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:105:14
|
105 | .trim_left_matches(|c| c == '-')
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_start_matches`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/app/parser.rs:138:75
|
138 | Err(why) => panic!("couldn't create completion file: {}", why.description()),
| ^^^^^^^^^^^
warning: use of deprecated associated function `bitflags::core::str::<impl str>::trim_left_matches`: superseded by `trim_start_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg.rs:337:35
|
337 | self.s.short = s.as_ref().trim_left_matches(|c| c == '-').chars().nth(0);
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_start_matches`
warning: use of deprecated associated function `bitflags::core::str::<impl str>::trim_left_matches`: superseded by `trim_start_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/args/arg.rs:377:30
|
377 | self.s.long = Some(l.trim_left_matches(|c| c == '-'));
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_start_matches`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:852:60
|
852 | message: format!("{} {}", c.error("error:"), e.description()),
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:910:35
|
910 | Error::with_description(e.description(), ErrorKind::Io)
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/clap-2.33.3/src/errors.rs:916:35
|
916 | Error::with_description(e.description(), ErrorKind::Format)
| ^^^^^^^^^^^
Compiling pty v0.2.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pty CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2 CARGO_PKG_AUTHORS='Hika Hibariya <hibariya@gmail.com>' CARGO_PKG_DESCRIPTION='Fork with new pseudo-terminal (PTY)' CARGO_PKG_HOMEPAGE='https://github.com/hibariya/pty-rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pty CARGO_PKG_REPOSITORY='https://github.com/hibariya/pty-rs' CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name pty /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=ec6f266532071582 -C extra-filename=-ec6f266532071582 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern errno=/home/pi/deno/target/debug/deps/liberrno-61925dfee3067c3d.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/descriptor/err.rs:36:32
|
36 | fn cause(&self) -> Option<&Error> {
| ^^^^^ help: use `dyn`: `dyn Error`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/fork/pty/master/err.rs:41:32
|
41 | fn cause(&self) -> Option<&Error> {
| ^^^^^ help: use `dyn`: `dyn Error`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/fork/pty/slave/err.rs:36:32
|
36 | fn cause(&self) -> Option<&Error> {
| ^^^^^ help: use `dyn`: `dyn Error`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/fork/err.rs:67:32
|
67 | fn cause(&self) -> Option<&Error> {
| ^^^^^ help: use `dyn`: `dyn Error`
warning: type alias is never used: `Result`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pty-0.2.2/src/descriptor/err.rs:6:1
|
6 | pub type Result<T> = ::std::result::Result<T, DescriptorError>;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: 5 warnings emitted
Compiling inotify v0.8.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=inotify CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-0.8.3 CARGO_PKG_AUTHORS='Hanno Braun <mail@hannobraun.de>:Félix Saparelli <me@passcod.name>:Cristian Kubis <cristian.kubis@tsunix.de>:Frank Denis <github@pureftpd.org>' CARGO_PKG_DESCRIPTION='Idiomatic wrapper for inotify' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=ISC CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=inotify CARGO_PKG_REPOSITORY='https://github.com/hannobraun/inotify' CARGO_PKG_VERSION=0.8.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name inotify --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/inotify-0.8.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=42184407be0bbdb3 -C extra-filename=-42184407be0bbdb3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern inotify_sys=/home/pi/deno/target/debug/deps/libinotify_sys-fb64894de3e5a9e8.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: 37 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.6.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/rand-17b43e1f4f338ea3/out rustc --crate-name rand /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="rand_os"' --cfg 'feature="std"' -C metadata=56b345ceeb9710da -C extra-filename=-56b345ceeb9710da --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern rand_chacha=/home/pi/deno/target/debug/deps/librand_chacha-87ecff9cee2e0560.rmeta --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-ce047d2d5f752996.rmeta --extern rand_hc=/home/pi/deno/target/debug/deps/librand_hc-3cf4e841d9674c6e.rmeta --extern rand_isaac=/home/pi/deno/target/debug/deps/librand_isaac-77b887c1d366684f.rmeta --extern rand_jitter=/home/pi/deno/target/debug/deps/librand_jitter-44c930d5cf687a04.rmeta --extern rand_os=/home/pi/deno/target/debug/deps/librand_os-878218fa727171b5.rmeta --extern rand_pcg=/home/pi/deno/target/debug/deps/librand_pcg-a6bd8f47682b15bb.rmeta --extern rand_xorshift=/home/pi/deno/target/debug/deps/librand_xorshift-306bdc86c1f9e8a3.rmeta --cap-lints warn --cfg rustc_1_25 --cfg rustc_1_26 --cfg rustc_1_27`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/distributions/weighted.rs:221:32
|
221 | fn cause(&self) -> Option<&::std::error::Error> {
| ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn (::std::error::Error)`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: the item `IteratorRandom` is imported redundantly
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/seq/mod.rs:451:9
|
173 | / pub trait IteratorRandom: Iterator + Sized {
174 | | /// Choose one element at random from the iterator. If you have a slice,
175 | | /// it's significantly faster to call the [`choose`] or [`choose_mut`]
176 | | /// functions using the slice instead.
... |
307 | | }
308 | | }
| |_- the item `IteratorRandom` is already defined here
...
451 | use seq::IteratorRandom;
| ^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: use of deprecated constant `std::sync::atomic::ATOMIC_USIZE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:289:42
|
289 | use std::sync::atomic::{AtomicUsize, ATOMIC_USIZE_INIT, Ordering};
| ^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated constant `std::sync::atomic::ATOMIC_BOOL_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:290:41
|
290 | use std::sync::atomic::{AtomicBool, ATOMIC_BOOL_INIT};
| ^^^^^^^^^^^^^^^^
warning: use of deprecated constant `std::sync::atomic::ATOMIC_USIZE_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:304:54
|
304 | static RESEEDING_RNG_FORK_COUNTER: AtomicUsize = ATOMIC_USIZE_INIT;
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated constant: `AtomicUsize::new(0)`
warning: use of deprecated constant `std::sync::atomic::ATOMIC_BOOL_INIT`: the `new` function is now preferred
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/rngs/adapter/reseeding.rs:310:50
|
310 | static FORK_HANDLER_REGISTERED: AtomicBool = ATOMIC_BOOL_INIT;
| ^^^^^^^^^^^^^^^^ help: replace the use of the deprecated constant: `AtomicBool::new(false)`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=nom CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2 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_REPOSITORY='https://github.com/Geal/nom' CARGO_PKG_VERSION=5.1.2 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/nom-30d0687ec01dc087/out rustc --crate-name nom --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/nom-5.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="lexical"' --cfg 'feature="lexical-core"' --cfg 'feature="std"' -C metadata=72e912e24ac4cc4c -C extra-filename=-72e912e24ac4cc4c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lexical_core=/home/pi/deno/target/debug/deps/liblexical_core-0fd84c1638b7fc94.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --cap-lints warn --cfg stable_i128`
Compiling block-buffer v0.9.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Fixed size buffer for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_VERSION=0.9.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name block_buffer --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=71966e48711e83c3 -C extra-filename=-71966e48711e83c3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern generic_array=/home/pi/deno/target/debug/deps/libgeneric_array-71256d94e7b20624.rmeta --cap-lints warn`
warning: 6 warnings emitted
Compiling digest v0.9.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_VERSION=0.9.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name digest --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.9.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="std"' -C metadata=1880752940165266 -C extra-filename=-1880752940165266 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern generic_array=/home/pi/deno/target/debug/deps/libgeneric_array-71256d94e7b20624.rmeta --cap-lints warn`
Compiling digest v0.8.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=digest CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.8.1 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Traits for cryptographic hash functions' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=digest CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/traits' CARGO_PKG_VERSION=0.8.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name digest /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.8.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=92141aa2112958b0 -C extra-filename=-92141aa2112958b0 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern generic_array=/home/pi/deno/target/debug/deps/libgeneric_array-6b202d5b2cf22a2f.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.8.1/src/dyn_digest.rs:28:32
|
28 | fn box_clone(&self) -> Box<DynDigest>;
| ^^^^^^^^^ help: use `dyn`: `dyn DynDigest`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.8.1/src/dyn_digest.rs:54:32
|
54 | fn box_clone(&self) -> Box<DynDigest> {
| ^^^^^^^^^ help: use `dyn`: `dyn DynDigest`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/digest-0.8.1/src/dyn_digest.rs:59:20
|
59 | impl Clone for Box<DynDigest> {
| ^^^^^^^^^ help: use `dyn`: `dyn DynDigest`
warning: 3 warnings emitted
Compiling block-buffer v0.7.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=block_buffer CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.7.3 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='Fixed size buffer for block processing of data' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=block-buffer CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/utils' CARGO_PKG_VERSION=0.7.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name block_buffer /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.7.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=64927b66ddd80eb8 -C extra-filename=-64927b66ddd80eb8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern block_padding=/home/pi/deno/target/debug/deps/libblock_padding-d2d99094adf85380.rmeta --extern byte_tools=/home/pi/deno/target/debug/deps/libbyte_tools-368f9afe592117de.rmeta --extern byteorder=/home/pi/deno/target/debug/deps/libbyteorder-3621f46a2321b047.rmeta --extern generic_array=/home/pi/deno/target/debug/deps/libgeneric_array-6b202d5b2cf22a2f.rmeta --cap-lints warn`
warning: unused import: `core::slice`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/block-buffer-0.7.3/src/lib.rs:11:5
|
11 | use core::slice;
| ^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=syn CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@gmail.com>' 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_REPOSITORY='https://github.com/dtolnay/syn' CARGO_PKG_VERSION=0.15.44 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=15 CARGO_PKG_VERSION_PATCH=44 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/syn-09110d27524f4a93/out rustc --crate-name syn /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --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"' --cfg 'feature="quote"' -C metadata=6f8049288d81de60 -C extra-filename=-6f8049288d81de60 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-8ec8e32a8fd78b3e.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-81c0de149c988516.rmeta --extern unicode_xid=/home/pi/deno/target/debug/deps/libunicode_xid-cd8a08b6a6034e82.rmeta --cap-lints warn --cfg syn_can_match_trailing_dollar --cfg syn_can_use_thread_id --cfg syn_can_use_associated_constants --cfg syn_can_call_macro_by_path --cfg syn_disable_nightly_tests`
warning: 1 warning emitted
Compiling webpki v0.21.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=webpki CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.21.3 CARGO_PKG_AUTHORS='Brian Smith <brian@briansmith.org>' CARGO_PKG_DESCRIPTION='Web PKI X.509 Certificate Verification.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='' CARGO_PKG_LICENSE_FILE=LICENSE CARGO_PKG_NAME=webpki CARGO_PKG_REPOSITORY='https://github.com/briansmith/webpki' CARGO_PKG_VERSION=0.21.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=21 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name webpki --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-0.21.3/src/webpki.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' --cfg 'feature="trust_anchor_util"' -C metadata=eb153b6344621d8e -C extra-filename=-eb153b6344621d8e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ring=/home/pi/deno/target/debug/deps/libring-e711d2390e5047f2.rmeta --extern untrusted=/home/pi/deno/target/debug/deps/libuntrusted-5e99d33802ca41bc.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out`
Compiling sct v0.6.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=sct CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.6.0 CARGO_PKG_AUTHORS='Joseph Birr-Pixton <jpixton@gmail.com>' CARGO_PKG_DESCRIPTION='Certificate transparency SCT verification library' CARGO_PKG_HOMEPAGE='https://github.com/ctz/sct.rs' CARGO_PKG_LICENSE=Apache-2.0/ISC/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sct CARGO_PKG_REPOSITORY='https://github.com/ctz/sct.rs' CARGO_PKG_VERSION=0.6.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name sct --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sct-0.6.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=98e888355442d58f -C extra-filename=-98e888355442d58f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ring=/home/pi/deno/target/debug/deps/libring-e711d2390e5047f2.rmeta --extern untrusted=/home/pi/deno/target/debug/deps/libuntrusted-5e99d33802ca41bc.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out`
Compiling rustyline v6.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rustyline CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustyline-6.3.0 CARGO_PKG_AUTHORS='Katsu Kawakami <kkawa1570@gmail.com>' CARGO_PKG_DESCRIPTION='Rustyline, a readline implementation based on Antirez'\''s Linenoise' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustyline CARGO_PKG_REPOSITORY='https://github.com/kkawakam/rustyline' CARGO_PKG_VERSION=6.3.0 CARGO_PKG_VERSION_MAJOR=6 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rustyline --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustyline-6.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7c74d664666bb067 -C extra-filename=-7c74d664666bb067 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern nix=/home/pi/deno/target/debug/deps/libnix-b2177ff6f11174db.rmeta --extern unicode_segmentation=/home/pi/deno/target/debug/deps/libunicode_segmentation-0eb7ef3dc88bb3d6.rmeta --extern unicode_width=/home/pi/deno/target/debug/deps/libunicode_width-fbbe897f9c536b45.rmeta --extern utf8parse=/home/pi/deno/target/debug/deps/libutf8parse-501eca5af2b9d42a.rmeta --cap-lints warn`
Compiling Inflector v0.11.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=inflector CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4 CARGO_PKG_AUTHORS='Josh Teeter<joshteeter@gmail.com>' CARGO_PKG_DESCRIPTION='Adds String based inflections for Rust. Snake, kebab, camel, sentence, class, title and table cases as well as ordinalize, deordinalize, demodulize, foreign key, and pluralize/singularize are supported as both traits and pure functions acting on String types.
' CARGO_PKG_HOMEPAGE='https://github.com/whatisinternet/inflector' CARGO_PKG_LICENSE=BSD-2-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=Inflector CARGO_PKG_REPOSITORY='https://github.com/whatisinternet/inflector' CARGO_PKG_VERSION=0.11.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name inflector /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/Inflector-0.11.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="heavyweight"' --cfg 'feature="lazy_static"' --cfg 'feature="regex"' -C metadata=1529d013d2c500ce -C extra-filename=-1529d013d2c500ce --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --extern regex=/home/pi/deno/target/debug/deps/libregex-970ea3d0de1cd2ad.rmeta --cap-lints warn`
Compiling env_logger v0.7.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=env_logger CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.7.1 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='A logging implementation for `log` which is configured via an environment
variable.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=env_logger CARGO_PKG_REPOSITORY='https://github.com/sebasmagri/env_logger/' CARGO_PKG_VERSION=0.7.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name env_logger --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/env_logger-0.7.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="atty"' --cfg 'feature="default"' --cfg 'feature="humantime"' --cfg 'feature="regex"' --cfg 'feature="termcolor"' -C metadata=c36475f0ee73ca37 -C extra-filename=-c36475f0ee73ca37 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern atty=/home/pi/deno/target/debug/deps/libatty-d828f0ebdbb44ca8.rmeta --extern humantime=/home/pi/deno/target/debug/deps/libhumantime-8756bda4d872577f.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern regex=/home/pi/deno/target/debug/deps/libregex-970ea3d0de1cd2ad.rmeta --extern termcolor=/home/pi/deno/target/debug/deps/libtermcolor-30dbf8356cc61a69.rmeta --cap-lints warn`
Compiling pmutil v0.5.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pmutil CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pmutil-0.5.3 CARGO_PKG_AUTHORS='강동윤 <kdy1@outlook.kr>' CARGO_PKG_DESCRIPTION='Utils for proc-macro' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pmutil CARGO_PKG_REPOSITORY='https://github.com/kdy1/rust-pmutil' CARGO_PKG_VERSION=0.5.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name pmutil --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pmutil-0.5.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d27e04ba95757b59 -C extra-filename=-d27e04ba95757b59 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rmeta --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rmeta --cap-lints warn`
Compiling darling_core v0.10.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=darling_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_core-0.10.2 CARGO_PKG_AUTHORS='Ted Driggs <ted.driggs@outlook.com>' CARGO_PKG_DESCRIPTION='Helper crate for proc-macro library for reading attributes into structs when
implementing custom derives. Use https://crates.io/crates/darling in your code.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=darling_core CARGO_PKG_REPOSITORY='https://github.com/TedDriggs/darling' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name darling_core /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_core-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="strsim"' --cfg 'feature="suggestions"' -C metadata=bf408b5c608dac2f -C extra-filename=-bf408b5c608dac2f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern fnv=/home/pi/deno/target/debug/deps/libfnv-ce4aa5efcd7fd8c5.rmeta --extern ident_case=/home/pi/deno/target/debug/deps/libident_case-0019eb4f212ef142.rmeta --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rmeta --extern strsim=/home/pi/deno/target/debug/deps/libstrsim-4a8b5e48b2b82b9b.rmeta --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rmeta --cap-lints warn`
Compiling async-compression v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=async_compression CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/async-compression-0.3.5 CARGO_PKG_AUTHORS='Wim Looman <wim@nemo157.com>:Allen Bui <fairingrey@gmail.com>' CARGO_PKG_DESCRIPTION='Adaptors between compression crates and Rust'\''s modern asynchronous IO types.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=async-compression CARGO_PKG_REPOSITORY='https://github.com/Nemo157/async-compression' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name async_compression --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/async-compression-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="brotli"' --cfg 'feature="bytes"' --cfg 'feature="flate2"' --cfg 'feature="gzip"' --cfg 'feature="stream"' -C metadata=ed60301ae073d09d -C extra-filename=-ed60301ae073d09d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern brotli=/home/pi/deno/target/debug/deps/libbrotli-f2cd94c65554b27c.rmeta --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern flate2=/home/pi/deno/target/debug/deps/libflate2-f4c6edf4adb26898.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern pin_project_lite=/home/pi/deno/target/debug/deps/libpin_project_lite-439552da17f885db.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_core-0.10.2/src/error/mod.rs:382:32
|
382 | fn cause(&self) -> Option<&StdError> {
| ^^^^^^^^ help: use `dyn`: `dyn StdError`
|
= note: `#[warn(bare_trait_objects)]` on by default
Compiling rand_chacha v0.2.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_chacha CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers:The CryptoCorrosion Contributors' CARGO_PKG_DESCRIPTION='ChaCha random number generator
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_chacha' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_chacha CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.2.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_chacha --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=1b48e81a15a046a4 -C extra-filename=-1b48e81a15a046a4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ppv_lite86=/home/pi/deno/target/debug/deps/libppv_lite86-80a7585dcfb74173.rmeta --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-a7b6164692e69399.rmeta --cap-lints warn`
Compiling rand_pcg v0.2.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand_pcg CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.2.1 CARGO_PKG_AUTHORS='The Rand Project Developers' CARGO_PKG_DESCRIPTION='Selected PCG random number generators
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand_pcg' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand_pcg CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand_pcg --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.2.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7b55aa82639f8968 -C extra-filename=-7b55aa82639f8968 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-a7b6164692e69399.rmeta --cap-lints warn`
Running `/home/pi/deno/target/debug/build/mime_guess-57786741ed2894db/build-script-build`
Compiling const-random v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=const_random CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/const-random-0.1.8 CARGO_PKG_AUTHORS='Tom Kaitchuck <Tom.Kaitchuck@gmail.com>' CARGO_PKG_DESCRIPTION='Provides compile time random number generation.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=const-random CARGO_PKG_REPOSITORY='https://github.com/tkaitchuck/constrandom' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name const_random --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/const-random-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=79112e011236bb3f -C extra-filename=-79112e011236bb3f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern const_random_macro=/home/pi/deno/target/debug/deps/libconst_random_macro-06e328b1efce3dbf.so --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --cap-lints warn`
Compiling mio-uds v0.6.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=mio_uds CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Unix domain socket bindings for mio
' CARGO_PKG_HOMEPAGE='https://github.com/deprecrated/mio-uds' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio-uds CARGO_PKG_REPOSITORY='https://github.com/deprecrated/mio-uds' CARGO_PKG_VERSION=0.6.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name mio_uds /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=a89307d6a8bdaf17 -C extra-filename=-a89307d6a8bdaf17 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern iovec=/home/pi/deno/target/debug/deps/libiovec-6905482cd25d8b2c.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern mio=/home/pi/deno/target/debug/deps/libmio-70f3c024c8c2de74.rmeta --cap-lints warn`
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:29:31
|
29 | let (addr, len) = try!(sockaddr_un(path));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:30:22
|
30 | let fd = try!(Socket::new(libc::SOCK_DGRAM));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:33:13
|
33 | try!(cvt(libc::bind(fd.fd(), addr, len)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:45:9
|
45 | try!(stream.set_nonblocking(true));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:54:26
|
54 | let (a, b) = try!(Socket::pair(libc::SOCK_DGRAM));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:62:22
|
62 | let stream = try!(net::UnixDatagram::unbound());
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/datagram.rs:63:9
|
63 | try!(stream.set_nonblocking(true));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:33:31
|
33 | let (addr, len) = try!(sockaddr_un(path));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:34:22
|
34 | let fd = try!(Socket::new(libc::SOCK_STREAM));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:37:13
|
37 | try!(cvt(libc::bind(fd.fd(), addr, len)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:38:13
|
38 | try!(cvt(libc::listen(fd.fd(), 128)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:50:9
|
50 | try!(stream.set_nonblocking(true));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/listener.rs:62:15
|
62 | match try!(self.accept_std()) {
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:64:35
|
64 | let fd = Socket { fd: try!(cvt(libc::socket(libc::AF_UNIX, ty, 0))) };
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:65:13
|
65 | try!(cvt(libc::ioctl(fd.fd, libc::FIOCLEX)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:67:13
|
67 | try!(cvt(libc::ioctl(fd.fd, libc::FIONBIO, &mut nonblocking)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:93:13
|
93 | try!(cvt(libc::socketpair(libc::AF_UNIX, ty, 0, fds.as_mut_ptr())));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:96:13
|
96 | try!(cvt(libc::ioctl(a.fd, libc::FIOCLEX)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:97:13
|
97 | try!(cvt(libc::ioctl(b.fd, libc::FIOCLEX)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:99:13
|
99 | try!(cvt(libc::ioctl(a.fd, libc::FIONBIO, &mut nonblocking)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:100:13
|
100 | try!(cvt(libc::ioctl(b.fd, libc::FIONBIO, &mut nonblocking)));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/stream.rs:52:31
|
52 | let (addr, len) = try!(sockaddr_un(path));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/stream.rs:53:26
|
53 | let socket = try!(Socket::new(libc::SOCK_STREAM));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/stream.rs:71:9
|
71 | try!(stream.set_nonblocking(true));
| ^^^
warning: use of deprecated function `std::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.8/src/socket.rs:160:39
|
160 | let addr: libc::sockaddr_un = mem::uninitialized();
| ^^^^^^^^^^^^^^^^^^
warning: use of deprecated associated function `core::str::<impl str>::trim_left_matches`: superseded by `trim_start_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_core-0.10.2/src/options/shape.rs:137:20
|
137 | match word.trim_left_matches(self.prefix) {
| ^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_start_matches`
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `core::str::<impl str>::trim_right_matches`: superseded by `trim_end_matches`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_core-0.10.2/src/options/shape.rs:191:34
|
191 | let ty = self.prefix.trim_right_matches('_');
| ^^^^^^^^^^^^^^^^^^ help: replace the use of the deprecated associated function: `trim_end_matches`
warning: 25 warnings emitted
Compiling mio-extras v2.0.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=mio_extras CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-extras-2.0.6 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>:David Hotham' CARGO_PKG_DESCRIPTION='Extra components for use with Mio' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mio-extras CARGO_PKG_REPOSITORY='https://github.com/dimbleby/mio-extras' CARGO_PKG_VERSION=2.0.6 CARGO_PKG_VERSION_MAJOR=2 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name mio_extras --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-extras-2.0.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=77d2fe67157c924e -C extra-filename=-77d2fe67157c924e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lazycell=/home/pi/deno/target/debug/deps/liblazycell-b8e13b8dbe7b7443.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern mio=/home/pi/deno/target/debug/deps/libmio-70f3c024c8c2de74.rmeta --extern slab=/home/pi/deno/target/debug/deps/libslab-0c4e8517bcd1e211.rmeta --cap-lints warn`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-extras-2.0.6/src/channel.rs:376:49
|
376 | SendError::Io(ref io_err) => io_err.description(),
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mio-extras-2.0.6/src/channel.rs:385:52
|
385 | TrySendError::Io(ref io_err) => io_err.description(),
| ^^^^^^^^^^^
warning: 68 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=serde_derive CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.116 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='Macros 1.1 implementation of #[derive(Serialize, Deserialize)]' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_derive CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_VERSION=1.0.116 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=116 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/serde_derive-24ee6f89fe17efd5/out rustc --crate-name serde_derive /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.116/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=dd34b83603bad510 -C extra-filename=-dd34b83603bad510 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn --cfg underscore_consts`
warning: 2 warnings emitted
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pin_project_internal CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-0.4.23 CARGO_PKG_AUTHORS='Taiki Endo <te316e89@gmail.com>' CARGO_PKG_DESCRIPTION='An internal crate to support pin_project - do not use directly
' CARGO_PKG_HOMEPAGE='https://github.com/taiki-e/pin-project' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project-internal CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project' CARGO_PKG_VERSION=0.4.23 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=23 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/pin-project-internal-ddb3f43a52801467/out rustc --crate-name pin_project_internal --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-internal-0.4.23/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=49a73dca51d94acd -C extra-filename=-49a73dca51d94acd --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn --cfg underscore_consts --cfg deprecated_proc_macro`
Compiling futures-macro v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_macro CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-macro-0.3.5 CARGO_PKG_AUTHORS='Taylor Cramer <cramertj@google.com>:Taiki Endo <te316e89@gmail.com>' CARGO_PKG_DESCRIPTION='The futures-rs procedural macro implementations.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-macro CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_macro --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-macro-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=4c06bf07e2d417d3 -C extra-filename=-4c06bf07e2d417d3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling tokio-macros v0.2.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tokio_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-macros-0.2.5 CARGO_PKG_AUTHORS='Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='Tokio'\''s proc macros.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-macros CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_VERSION=0.2.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tokio_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-macros-0.2.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=912cc92faf2ed81d -C extra-filename=-912cc92faf2ed81d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
warning: lint `intra_doc_link_resolution_failure` has been renamed to `broken_intra_doc_links`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-macros-0.2.5/src/lib.rs:9:9
|
9 | #![deny(intra_doc_link_resolution_failure)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `broken_intra_doc_links`
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
warning: 1 warning emitted
Compiling thiserror-impl v1.0.20
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=thiserror_impl CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.20 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@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_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_VERSION=1.0.20 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name thiserror_impl --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-impl-1.0.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=26b48fb497f8beb6 -C extra-filename=-26b48fb497f8beb6 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
warning: 3 warnings emitted
Compiling rustyline-derive v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rustyline_derive CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustyline-derive-0.3.1 CARGO_PKG_AUTHORS=gwenn CARGO_PKG_DESCRIPTION='Rustyline macros implementation of #[derive(Completer, Helper, Hinter, Highlighter)]' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustyline-derive CARGO_PKG_REPOSITORY='https://github.com/kkawakam/rustyline' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rustyline_derive --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustyline-derive-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=1d8700898b377893 -C extra-filename=-1d8700898b377893 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling sha-1 v0.9.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sha-1-0.9.1 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha-1 CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_VERSION=0.9.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=9 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name sha1 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sha-1-0.9.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=e880066d60aa74da -C extra-filename=-e880066d60aa74da --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern block_buffer=/home/pi/deno/target/debug/deps/libblock_buffer-71966e48711e83c3.rmeta --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern digest=/home/pi/deno/target/debug/deps/libdigest-1880752940165266.rmeta --extern opaque_debug=/home/pi/deno/target/debug/deps/libopaque_debug-4f7ca6753ce27d56.rmeta --cap-lints warn`
Compiling sha-1 v0.8.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=sha1 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sha-1-0.8.2 CARGO_PKG_AUTHORS='RustCrypto Developers' CARGO_PKG_DESCRIPTION='SHA-1 hash function' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sha-1 CARGO_PKG_REPOSITORY='https://github.com/RustCrypto/hashes' CARGO_PKG_VERSION=0.8.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name sha1 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sha-1-0.8.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=119d6ce155312f74 -C extra-filename=-119d6ce155312f74 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern block_buffer=/home/pi/deno/target/debug/deps/libblock_buffer-64927b66ddd80eb8.rmeta --extern digest=/home/pi/deno/target/debug/deps/libdigest-92141aa2112958b0.rmeta --extern fake_simd=/home/pi/deno/target/debug/deps/libfake_simd-2ac521fdfe82ae4a.rmeta --extern opaque_debug=/home/pi/deno/target/debug/deps/libopaque_debug-f63b82eb8b7ea336.rmeta --cap-lints warn`
Compiling webpki-roots v0.19.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=webpki_roots CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.19.0 CARGO_PKG_AUTHORS='Joseph Birr-Pixton <jpixton@gmail.com>' CARGO_PKG_DESCRIPTION='Mozilla'\''s CA root certificates for use with webpki' CARGO_PKG_HOMEPAGE='https://github.com/ctz/webpki-roots' CARGO_PKG_LICENSE=MPL-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=webpki-roots CARGO_PKG_REPOSITORY='https://github.com/ctz/webpki-roots' CARGO_PKG_VERSION=0.19.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=19 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name webpki_roots --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.19.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=a1a76bdfcab25897 -C extra-filename=-a1a76bdfcab25897 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern webpki=/home/pi/deno/target/debug/deps/libwebpki-eb153b6344621d8e.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out`
Compiling rustls v0.18.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rustls CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.18.1 CARGO_PKG_AUTHORS='Joseph Birr-Pixton <jpixton@gmail.com>' CARGO_PKG_DESCRIPTION='Rustls is a modern TLS library written in Rust.' CARGO_PKG_HOMEPAGE='https://github.com/ctz/rustls' CARGO_PKG_LICENSE=Apache-2.0/ISC/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rustls CARGO_PKG_REPOSITORY='https://github.com/ctz/rustls' CARGO_PKG_VERSION=0.18.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=18 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rustls --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rustls-0.18.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="dangerous_configuration"' --cfg 'feature="default"' --cfg 'feature="log"' --cfg 'feature="logging"' -C metadata=d8143990b6e75fb2 -C extra-filename=-d8143990b6e75fb2 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern base64=/home/pi/deno/target/debug/deps/libbase64-524f7420c94cbb9e.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern ring=/home/pi/deno/target/debug/deps/libring-e711d2390e5047f2.rmeta --extern sct=/home/pi/deno/target/debug/deps/libsct-98e888355442d58f.rmeta --extern webpki=/home/pi/deno/target/debug/deps/libwebpki-eb153b6344621d8e.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out`
Compiling swc_macros_common v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_macros_common CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_macros_common-0.3.1 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Common utilities for swc macros.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_macros_common CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_macros_common --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_macros_common-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0903cada70cb7c96 -C extra-filename=-0903cada70cb7c96 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rmeta --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rmeta --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rmeta --cap-lints warn`
warning: unused import: `SpanExt`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_macros_common-0.3.1/src/lib.rs:3:35
|
3 | use pmutil::{synom_ext::FromSpan, SpanExt};
| ^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
Compiling is-macro v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=is_macro CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/is-macro-0.1.8 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Easily create methods for to use yout custom enum like Option / Result' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=is-macro CARGO_PKG_REPOSITORY='https://github.com/kdy1/is-macro' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name is_macro --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/is-macro-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=7a147619997d9e13 -C extra-filename=-7a147619997d9e13 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern inflector=/home/pi/deno/target/debug/deps/libinflector-1529d013d2c500ce.rlib --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
warning: 1 warning emitted
Compiling rand v0.7.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=rand CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3 CARGO_PKG_AUTHORS='The Rand Project Developers:The Rust Project Developers' CARGO_PKG_DESCRIPTION='Random number generators and other randomness functionality.
' CARGO_PKG_HOMEPAGE='https://crates.io/crates/rand' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rand CARGO_PKG_REPOSITORY='https://github.com/rust-random/rand' CARGO_PKG_VERSION=0.7.3 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=7 CARGO_PKG_VERSION_PATCH=3 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name rand --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand-0.7.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="default"' --cfg 'feature="getrandom"' --cfg 'feature="getrandom_package"' --cfg 'feature="libc"' --cfg 'feature="rand_pcg"' --cfg 'feature="small_rng"' --cfg 'feature="std"' -C metadata=f1f7509fb7526377 -C extra-filename=-f1f7509fb7526377 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern getrandom_package=/home/pi/deno/target/debug/deps/libgetrandom-ad28ed35378d1a64.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern rand_chacha=/home/pi/deno/target/debug/deps/librand_chacha-1b48e81a15a046a4.rmeta --extern rand_core=/home/pi/deno/target/debug/deps/librand_core-a7b6164692e69399.rmeta --extern rand_pcg=/home/pi/deno/target/debug/deps/librand_pcg-7b55aa82639f8968.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=mime_guess CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.3 CARGO_PKG_AUTHORS='Austin Bonander <austin.bonander@gmail.com>' CARGO_PKG_DESCRIPTION='A simple crate for detection of a file'\''s MIME type by its extension.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=mime_guess CARGO_PKG_REPOSITORY='https://github.com/abonander/mime_guess' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/mime_guess-c2b1d1efff2467ac/out rustc --crate-name mime_guess /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="rev-mappings"' -C metadata=c539a7dc4aea4e9f -C extra-filename=-c539a7dc4aea4e9f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern mime=/home/pi/deno/target/debug/deps/libmime-290184f10e4f7c13.rmeta --extern unicase=/home/pi/deno/target/debug/deps/libunicase-f931e18ada7a98b1.rmeta --cap-lints warn`
Compiling ahash v0.3.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ahash CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.3.8 CARGO_PKG_AUTHORS='Tom Kaitchuck <Tom.Kaitchuck@gmail.com>' CARGO_PKG_DESCRIPTION='A non-cryptographic hash function using AES-NI for high performance' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ahash CARGO_PKG_REPOSITORY='https://github.com/tkaitchuck/ahash' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ahash --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.3.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="compile-time-rng"' --cfg 'feature="const-random"' --cfg 'feature="default"' --cfg 'feature="std"' -C metadata=a11b6daa932e65c0 -C extra-filename=-a11b6daa932e65c0 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern const_random=/home/pi/deno/target/debug/deps/libconst_random-79112e011236bb3f.rmeta --cap-lints warn`
warning: function is never used: `add_by_64s`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.3.8/src/folded_multiply.rs:32:15
|
32 | pub(crate) fn add_by_64s(a: [u64; 2], b: [u64; 2]) -> [u64; 2] {
| ^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: constant is never used: `INCREMENT`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ahash-0.3.8/src/random_state.rs:11:1
|
11 | pub(crate) const INCREMENT: u64 = 1442695040888963407;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Compiling notify v5.0.0-pre.3
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=notify CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/notify-5.0.0-pre.3 CARGO_PKG_AUTHORS='Félix Saparelli <me@passcod.name>:Daniel Faust <hessijames@gmail.com>' CARGO_PKG_DESCRIPTION='Cross-platform filesystem notification library' CARGO_PKG_HOMEPAGE='https://github.com/notify-rs/notify' CARGO_PKG_LICENSE=CC0-1.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=notify CARGO_PKG_REPOSITORY='https://github.com/notify-rs/notify.git' CARGO_PKG_VERSION=5.0.0-pre.3 CARGO_PKG_VERSION_MAJOR=5 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE=pre.3 LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name notify --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/notify-5.0.0-pre.3/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=95d81decfcda8d2d -C extra-filename=-95d81decfcda8d2d --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern anymap=/home/pi/deno/target/debug/deps/libanymap-4d72568359c682ba.rmeta --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern crossbeam_channel=/home/pi/deno/target/debug/deps/libcrossbeam_channel-6126270ac2e750df.rmeta --extern filetime=/home/pi/deno/target/debug/deps/libfiletime-0dbd4ede426c4e0e.rmeta --extern inotify=/home/pi/deno/target/debug/deps/libinotify-42184407be0bbdb3.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern mio=/home/pi/deno/target/debug/deps/libmio-70f3c024c8c2de74.rmeta --extern mio_extras=/home/pi/deno/target/debug/deps/libmio_extras-77d2fe67157c924e.rmeta --extern walkdir=/home/pi/deno/target/debug/deps/libwalkdir-883b8f963f7f3f24.rmeta --cap-lints warn`
warning: 2 warnings emitted
Compiling dlopen_derive v0.1.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dlopen_derive CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen_derive-0.1.4 CARGO_PKG_AUTHORS='Szymon Wieloch <szymon.wieloch@gmail.com>' CARGO_PKG_DESCRIPTION='Derive macros for the dlopen crate.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dlopen_derive CARGO_PKG_REPOSITORY='' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dlopen_derive /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen_derive-0.1.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=857e64476e260a7e -C extra-filename=-857e64476e260a7e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-81c0de149c988516.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-6f8049288d81de60.rlib --extern proc_macro --cap-lints warn`
warning: the trait `anymap::any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:15:8
|
15 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
| ^^^^^^^^^^^^^^^^^ the trait cannot be made into an object because method `clone_to_any_send` references the `Self` type in its `where` clause
|
= note: `#[warn(where_clauses_object_safety)]` on by default
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
warning: the trait `anymap::any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:18:8
|
18 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
| ^^^^^^^^^^^^^^^^^ the trait cannot be made into an object because method `clone_to_any_sync` references the `Self` type in its `where` clause
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
warning: the trait `anymap::any::CloneToAny` cannot be made into an object
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:21:8
|
21 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
| ^^^^^^^^^^^^^^^^^^^^^^ the trait cannot be made into an object because method `clone_to_any_send_sync` references the `Self` type in its `where` clause
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
= note: for more information, see issue #51443 <https://github.com/rust-lang/rust/issues/51443>
Compiling tokio v0.2.22
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tokio CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.22 CARGO_PKG_AUTHORS='Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='An event-driven, non-blocking I/O platform for writing asynchronous I/O
backed applications.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' CARGO_PKG_VERSION=0.2.22 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=22 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tokio --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.22/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="blocking"' --cfg 'feature="default"' --cfg 'feature="dns"' --cfg 'feature="fnv"' --cfg 'feature="fs"' --cfg 'feature="full"' --cfg 'feature="futures-core"' --cfg 'feature="io-driver"' --cfg 'feature="io-std"' --cfg 'feature="io-util"' --cfg 'feature="iovec"' --cfg 'feature="lazy_static"' --cfg 'feature="libc"' --cfg 'feature="macros"' --cfg 'feature="memchr"' --cfg 'feature="mio"' --cfg 'feature="mio-named-pipes"' --cfg 'feature="mio-uds"' --cfg 'feature="net"' --cfg 'feature="num_cpus"' --cfg 'feature="process"' --cfg 'feature="rt-core"' --cfg 'feature="rt-threaded"' --cfg 'feature="rt-util"' --cfg 'feature="signal"' --cfg 'feature="signal-hook-registry"' --cfg 'feature="slab"' --cfg 'feature="stream"' --cfg 'feature="sync"' --cfg 'feature="tcp"' --cfg 'feature="time"' --cfg 'feature="tokio-macros"' --cfg 'feature="udp"' --cfg 'feature="uds"' --cfg 'feature="winapi"' -C metadata=7b23a3b906acbd56 -C extra-filename=-7b23a3b906acbd56 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern fnv=/home/pi/deno/target/debug/deps/libfnv-ce4aa5efcd7fd8c5.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern iovec=/home/pi/deno/target/debug/deps/libiovec-6905482cd25d8b2c.rmeta --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern mio=/home/pi/deno/target/debug/deps/libmio-70f3c024c8c2de74.rmeta --extern mio_uds=/home/pi/deno/target/debug/deps/libmio_uds-a89307d6a8bdaf17.rmeta --extern num_cpus=/home/pi/deno/target/debug/deps/libnum_cpus-cb2a766a1fdc9f6c.rmeta --extern pin_project_lite=/home/pi/deno/target/debug/deps/libpin_project_lite-439552da17f885db.rmeta --extern signal_hook_registry=/home/pi/deno/target/debug/deps/libsignal_hook_registry-40fdb1091117ff21.rmeta --extern slab=/home/pi/deno/target/debug/deps/libslab-0c4e8517bcd1e211.rmeta --extern tokio_macros=/home/pi/deno/target/debug/deps/libtokio_macros-912cc92faf2ed81d.so --cap-lints warn`
warning: lint `intra_doc_link_resolution_failure` has been renamed to `broken_intra_doc_links`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-0.2.22/src/lib.rs:13:9
|
13 | #![deny(intra_doc_link_resolution_failure)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `broken_intra_doc_links`
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
Compiling darling_macro v0.10.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=darling_macro CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_macro-0.10.2 CARGO_PKG_AUTHORS='Ted Driggs <ted.driggs@outlook.com>' CARGO_PKG_DESCRIPTION='Internal support for a proc-macro library for reading attributes into structs when
implementing custom derives. Use https://crates.io/crates/darling in your code.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=darling_macro CARGO_PKG_REPOSITORY='https://github.com/TedDriggs/darling' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name darling_macro /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling_macro-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=8b5da528d6b04c06 -C extra-filename=-8b5da528d6b04c06 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern darling_core=/home/pi/deno/target/debug/deps/libdarling_core-bf408b5c608dac2f.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling pin-project v0.4.23
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=pin_project CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-0.4.23 CARGO_PKG_AUTHORS='Taiki Endo <te316e89@gmail.com>' CARGO_PKG_DESCRIPTION='A crate for safe and ergonomic pin-projection.
' CARGO_PKG_HOMEPAGE='https://github.com/taiki-e/pin-project' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=pin-project CARGO_PKG_REPOSITORY='https://github.com/taiki-e/pin-project' CARGO_PKG_VERSION=0.4.23 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=23 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name pin_project --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/pin-project-0.4.23/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=eb54726e97c386d5 -C extra-filename=-eb54726e97c386d5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pin_project_internal=/home/pi/deno/target/debug/deps/libpin_project_internal-49a73dca51d94acd.so --cap-lints warn`
Compiling headers v0.3.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=headers CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/headers-0.3.2 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='typed HTTP headers' CARGO_PKG_HOMEPAGE='https://hyper.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=headers CARGO_PKG_REPOSITORY='https://github.com/hyperium/headers' CARGO_PKG_VERSION=0.3.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name headers /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/headers-0.3.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=74b87c930a8caf1b -C extra-filename=-74b87c930a8caf1b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern base64=/home/pi/deno/target/debug/deps/libbase64-524f7420c94cbb9e.rmeta --extern bitflags=/home/pi/deno/target/debug/deps/libbitflags-8697a9bfe9f801d9.rmeta --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern headers_core=/home/pi/deno/target/debug/deps/libheaders_core-8315db51033a27ec.rmeta --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --extern mime=/home/pi/deno/target/debug/deps/libmime-290184f10e4f7c13.rmeta --extern sha1=/home/pi/deno/target/debug/deps/libsha1-119d6ce155312f74.rmeta --extern time=/home/pi/deno/target/debug/deps/libtime-7e19902a4bd44ce3.rmeta --cap-lints warn`
warning: 3 warnings emitted
Compiling thiserror v1.0.20
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=thiserror CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.20 CARGO_PKG_AUTHORS='David Tolnay <dtolnay@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_REPOSITORY='https://github.com/dtolnay/thiserror' CARGO_PKG_VERSION=1.0.20 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=20 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name thiserror --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/thiserror-1.0.20/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=0fe84d11db73d36c -C extra-filename=-0fe84d11db73d36c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern thiserror_impl=/home/pi/deno/target/debug/deps/libthiserror_impl-26b48fb497f8beb6.so --cap-lints warn`
Compiling swc_visit_macros v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_visit_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_visit_macros-0.2.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Visitor generator for stable rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_visit_macros CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_visit_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_visit_macros-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=baab954a91184997 -C extra-filename=-baab954a91184997 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern inflector=/home/pi/deno/target/debug/deps/libinflector-1529d013d2c500ce.rlib --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling from_variant v0.1.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=from_variant CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/from_variant-0.1.2 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Automatically derive From impls for enums' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=from_variant CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name from_variant --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/from_variant-0.1.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=cad9b60ab157cca0 -C extra-filename=-cad9b60ab157cca0 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling enum_kind v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=enum_kind CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/enum_kind-0.2.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Easily manage values related to enum.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=enum_kind CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name enum_kind --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/enum_kind-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=606486bb5c14712b -C extra-filename=-606486bb5c14712b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling string_enum v0.3.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=string_enum CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_enum-0.3.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='String based enum.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=string_enum CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name string_enum --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_enum-0.3.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=4ecadef19b698540 -C extra-filename=-4ecadef19b698540 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling swc_ecma_parser_macros v0.4.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_ecma_parser_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_parser_macros-0.4.1 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Macros for swc_ecma_parser.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_ecma_parser_macros CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.4.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=4 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_ecma_parser_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_parser_macros-0.4.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=2ed6624039f927d8 -C extra-filename=-2ed6624039f927d8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling swc_ecma_transforms_macros v0.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_ecma_transforms_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_transforms_macros-0.1.1 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Macros for swc_ecma_transforms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_ecma_transforms_macros CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.1.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_ecma_transforms_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_transforms_macros-0.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=8f260ff43084eb96 -C extra-filename=-8f260ff43084eb96 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling swc_ecma_codegen_macros v0.5.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_ecma_codegen_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_codegen_macros-0.5.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Macros for swc_ecma_codegen.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_ecma_codegen_macros CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.5.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_ecma_codegen_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_codegen_macros-0.5.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=d9a3c64c5e2d0781 -C extra-filename=-d9a3c64c5e2d0781 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
Compiling phf_generator v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=phf_generator CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.8.0 CARGO_PKG_AUTHORS='Steven Fackler <sfackler@gmail.com>' CARGO_PKG_DESCRIPTION='PHF generation logic' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=phf_generator CARGO_PKG_REPOSITORY='https://github.com/sfackler/rust-phf' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name phf_generator --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_generator-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=43d16a343d6a996e -C extra-filename=-43d16a343d6a996e --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern phf_shared=/home/pi/deno/target/debug/deps/libphf_shared-ba80ea98d421f251.rmeta --extern rand=/home/pi/deno/target/debug/deps/librand-f1f7509fb7526377.rmeta --cap-lints warn`
Compiling tempfile v3.1.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tempfile CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0 CARGO_PKG_AUTHORS='Steven Allen <steven@stebalien.com>:The Rust Project Developers:Ashley Mannix <ashleymannix@live.com.au>:Jason White <jasonaw0@gmail.com>' CARGO_PKG_DESCRIPTION='A library for managing temporary files and directories.' CARGO_PKG_HOMEPAGE='http://stebalien.com/projects/tempfile-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tempfile CARGO_PKG_REPOSITORY='https://github.com/Stebalien/tempfile' CARGO_PKG_VERSION=3.1.0 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tempfile --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=d94d068ab1601e5b -C extra-filename=-d94d068ab1601e5b --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern rand=/home/pi/deno/target/debug/deps/librand-f1f7509fb7526377.rmeta --extern remove_dir_all=/home/pi/deno/target/debug/deps/libremove_dir_all-2fd85ec4edc75803.rmeta --cap-lints warn`
warning: unused return value of `std::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0/src/file/mod.rs:181:9
|
181 | mem::replace(&mut self.path, PathBuf::new());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `std::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0/src/file/mod.rs:232:17
|
232 | mem::replace(&mut self.path, PathBuf::new());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `std::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0/src/file/mod.rs:294:17
|
294 | mem::replace(&mut self.path, PathBuf::new());
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 3 warnings emitted
Compiling uuid v0.8.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=uuid CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/uuid-0.8.1 CARGO_PKG_AUTHORS='Ashley Mannix<ashleymannix@live.com.au>:Christopher Armstrong:Dylan DPC<dylan.dpc@gmail.com>:Hunar Roop Kahlon<hunar.roop@gmail.com>' CARGO_PKG_DESCRIPTION='A library to generate and parse UUIDs.' CARGO_PKG_HOMEPAGE='https://github.com/uuid-rs/uuid' CARGO_PKG_LICENSE='Apache-2.0 OR MIT' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=uuid CARGO_PKG_REPOSITORY='https://github.com/uuid-rs/uuid' CARGO_PKG_VERSION=0.8.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=8 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name uuid --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/uuid-0.8.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="rand"' --cfg 'feature="std"' --cfg 'feature="v4"' -C metadata=dde4e44d6f403e4a -C extra-filename=-dde4e44d6f403e4a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern rand=/home/pi/deno/target/debug/deps/librand-f1f7509fb7526377.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=serde CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.116 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='A generic serialization/deserialization framework' CARGO_PKG_HOMEPAGE='https://serde.rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde CARGO_PKG_REPOSITORY='https://github.com/serde-rs/serde' CARGO_PKG_VERSION=1.0.116 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=116 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/serde-4a6c9eada4631928/out rustc --crate-name serde /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde-1.0.116/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="derive"' --cfg 'feature="serde_derive"' --cfg 'feature="std"' -C metadata=ae586fad8c551d3f -C extra-filename=-ae586fad8c551d3f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern serde_derive=/home/pi/deno/target/debug/deps/libserde_derive-dd34b83603bad510.so --cap-lints warn --cfg ops_bound --cfg core_reverse --cfg de_boxed_c_str --cfg de_boxed_path --cfg de_rc_dst --cfg core_duration --cfg integer128 --cfg range_inclusive --cfg num_nonzero --cfg core_try_from --cfg num_nonzero_signed --cfg std_atomic64 --cfg std_atomic`
Compiling dashmap v3.11.10
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dashmap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dashmap-3.11.10 CARGO_PKG_AUTHORS='Acrimon <joel.wejdenstal@gmail.com>' CARGO_PKG_DESCRIPTION='Blazing fast concurrent HashMap for Rust.' CARGO_PKG_HOMEPAGE='https://github.com/xacrimon/dashmap' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dashmap CARGO_PKG_REPOSITORY='https://github.com/xacrimon/dashmap' CARGO_PKG_VERSION=3.11.10 CARGO_PKG_VERSION_MAJOR=3 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=10 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dashmap --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dashmap-3.11.10/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=d459ac34b2d8495f -C extra-filename=-d459ac34b2d8495f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ahash=/home/pi/deno/target/debug/deps/libahash-a11b6daa932e65c0.rmeta --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern num_cpus=/home/pi/deno/target/debug/deps/libnum_cpus-cb2a766a1fdc9f6c.rmeta --cap-lints warn`
Compiling dlopen v0.1.8
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dlopen CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8 CARGO_PKG_AUTHORS='Szymon Wieloch <szymon.wieloch@gmail.com>' CARGO_PKG_DESCRIPTION='Library for opening and operating on dynamic link libraries (also known as shared objects or shared libraries). This is a modern and more flexible alternative to the already existing libraries like libloading or sharedlib' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dlopen CARGO_PKG_REPOSITORY='https://github.com/szymonwieloch/rust-dlopen' CARGO_PKG_VERSION=0.1.8 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=1 CARGO_PKG_VERSION_PATCH=8 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dlopen /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f43c03d850535655 -C extra-filename=-f43c03d850535655 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern dlopen_derive=/home/pi/deno/target/debug/deps/libdlopen_derive-857e64476e260a7e.so --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8/src/err.rs:35:32
|
35 | fn cause(&self) -> Option<&ErrorTrait> {
| ^^^^^^^^^^ help: use `dyn`: `dyn ErrorTrait`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: use of deprecated function `std::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8/src/raw/unix.rs:7:5
|
7 | use std::mem::uninitialized;
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated function `std::mem::uninitialized`: use `mem::MaybeUninit` instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8/src/raw/unix.rs:86:31
|
86 | let mut dlinfo: Dl_info = uninitialized();
| ^^^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dlopen-0.1.8/src/err.rs:49:26
|
49 | f.write_str(self.description())?;
| ^^^^^^^^^^^
Compiling darling v0.10.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=darling CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling-0.10.2 CARGO_PKG_AUTHORS='Ted Driggs <ted.driggs@outlook.com>' CARGO_PKG_DESCRIPTION='A proc-macro library for reading attributes into structs when
implementing custom derives.
' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=darling CARGO_PKG_REPOSITORY='https://github.com/TedDriggs/darling' CARGO_PKG_VERSION=0.10.2 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name darling /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/darling-0.10.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="suggestions"' -C metadata=23278163c6b04de1 -C extra-filename=-23278163c6b04de1 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern darling_core=/home/pi/deno/target/debug/deps/libdarling_core-bf408b5c608dac2f.rmeta --extern darling_macro=/home/pi/deno/target/debug/deps/libdarling_macro-8b5da528d6b04c06.so --cap-lints warn`
Compiling futures-util v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_util CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Common utilities and extension traits for the futures-rs library.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-util CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_util --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="async-await-macro"' --cfg 'feature="channel"' --cfg 'feature="default"' --cfg 'feature="futures-channel"' --cfg 'feature="futures-io"' --cfg 'feature="futures-macro"' --cfg 'feature="futures-sink"' --cfg 'feature="io"' --cfg 'feature="memchr"' --cfg 'feature="proc-macro-hack"' --cfg 'feature="proc-macro-nested"' --cfg 'feature="sink"' --cfg 'feature="slab"' --cfg 'feature="std"' -C metadata=83840ea1a17883fd -C extra-filename=-83840ea1a17883fd --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_channel=/home/pi/deno/target/debug/deps/libfutures_channel-258d5cb42061defb.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_io=/home/pi/deno/target/debug/deps/libfutures_io-d171e1b53820a463.rmeta --extern futures_macro=/home/pi/deno/target/debug/deps/libfutures_macro-4c06bf07e2d417d3.so --extern futures_sink=/home/pi/deno/target/debug/deps/libfutures_sink-bf91bc8415e1de36.rmeta --extern futures_task=/home/pi/deno/target/debug/deps/libfutures_task-b91861f8b74f2755.rmeta --extern memchr=/home/pi/deno/target/debug/deps/libmemchr-88d44ab3a3ad53b8.rmeta --extern pin_project=/home/pi/deno/target/debug/deps/libpin_project-eb54726e97c386d5.rmeta --extern pin_utils=/home/pi/deno/target/debug/deps/libpin_utils-ba5ab5ed6a603e69.rmeta --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --extern proc_macro_nested=/home/pi/deno/target/debug/deps/libproc_macro_nested-83ed7515435a125c.rmeta --extern slab=/home/pi/deno/target/debug/deps/libslab-0c4e8517bcd1e211.rmeta --cap-lints warn`
warning: 1 warning emitted
Compiling tracing-futures v0.2.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tracing_futures CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.4 CARGO_PKG_AUTHORS='Eliza Weisman <eliza@buoyant.io>:Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='Utilities for instrumenting `futures` with `tracing`.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tracing-futures CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tracing' CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tracing_futures --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="pin-project"' --cfg 'feature="std-future"' -C metadata=5fa563c59cbf2b78 -C extra-filename=-5fa563c59cbf2b78 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern pin_project=/home/pi/deno/target/debug/deps/libpin_project-eb54726e97c386d5.rmeta --extern tracing=/home/pi/deno/target/debug/deps/libtracing-791503926adf223e.rmeta --cap-lints warn`
warning: unused import: `tracing::dispatcher`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.4/src/lib.rs:90:5
|
90 | use tracing::dispatcher;
| ^^^^^^^^^^^^^^^^^^^
|
note: the lint level is defined here
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.4/src/lib.rs:74:5
|
74 | unused,
| ^^^^^^
= note: `#[warn(unused_imports)]` implied by `#[warn(unused)]`
warning: unused import: `Dispatch`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tracing-futures-0.2.4/src/lib.rs:91:15
|
91 | use tracing::{Dispatch, Span};
| ^^^^^^^^
warning: 2 warnings emitted
Compiling which v4.0.2
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=which CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/which-4.0.2 CARGO_PKG_AUTHORS='Harry Fei <tiziyuanfang@gmail.com>' CARGO_PKG_DESCRIPTION='A Rust equivalent of Unix command "which". Locate installed executable in cross platforms.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=which CARGO_PKG_REPOSITORY='https://github.com/harryfei/which-rs.git' CARGO_PKG_VERSION=4.0.2 CARGO_PKG_VERSION_MAJOR=4 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=2 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name which /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/which-4.0.2/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=a0a969a99aff3f8f -C extra-filename=-a0a969a99aff3f8f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern libc=/home/pi/deno/target/debug/deps/liblibc-bc8a133f2e55690c.rmeta --extern thiserror=/home/pi/deno/target/debug/deps/libthiserror-0fe84d11db73d36c.rmeta --cap-lints warn`
warning: 4 warnings emitted
Compiling tokio-util v0.3.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tokio_util CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.3.1 CARGO_PKG_AUTHORS='Tokio Contributors <team@tokio.rs>' CARGO_PKG_DESCRIPTION='Additional utilities for working with Tokio.
' CARGO_PKG_HOMEPAGE='https://tokio.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-util CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tokio' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tokio_util --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.3.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="codec"' --cfg 'feature="default"' -C metadata=cb31629b99fca3a8 -C extra-filename=-cb31629b99fca3a8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_sink=/home/pi/deno/target/debug/deps/libfutures_sink-bf91bc8415e1de36.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern pin_project_lite=/home/pi/deno/target/debug/deps/libpin_project_lite-439552da17f885db.rmeta --extern tokio=/home/pi/deno/target/debug/deps/libtokio-7b23a3b906acbd56.rmeta --cap-lints warn`
warning: lint `intra_doc_link_resolution_failure` has been renamed to `broken_intra_doc_links`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-util-0.3.1/src/lib.rs:9:9
|
9 | #![deny(intra_doc_link_resolution_failure)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `broken_intra_doc_links`
|
= note: `#[warn(renamed_and_removed_lints)]` on by default
Compiling tokio-rustls v0.14.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tokio_rustls CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.14.1 CARGO_PKG_AUTHORS='quininer kel <quininer@live.com>' CARGO_PKG_DESCRIPTION='Asynchronous TLS/SSL streams for Tokio using Rustls.' CARGO_PKG_HOMEPAGE='https://github.com/tokio-rs/tls' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-rustls CARGO_PKG_REPOSITORY='https://github.com/tokio-rs/tls' CARGO_PKG_VERSION=0.14.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=14 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tokio_rustls --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.14.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=6bac8143b9ac62d4 -C extra-filename=-6bac8143b9ac62d4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern rustls=/home/pi/deno/target/debug/deps/librustls-d8143990b6e75fb2.rmeta --extern tokio=/home/pi/deno/target/debug/deps/libtokio-7b23a3b906acbd56.rmeta --extern webpki=/home/pi/deno/target/debug/deps/libwebpki-eb153b6344621d8e.rmeta --cap-lints warn -L native=/home/pi/deno/target/debug/build/ring-0d4f9d70f6d2a9f3/out`
Compiling swc_visit v0.2.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_visit CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_visit-0.2.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Visitor generator for stable rustc' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_visit CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_visit --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_visit-0.2.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fb2128e84d890010 -C extra-filename=-fb2128e84d890010 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern either=/home/pi/deno/target/debug/deps/libeither-49681a293766e0f9.rmeta --extern swc_visit_macros=/home/pi/deno/target/debug/deps/libswc_visit_macros-baab954a91184997.so --cap-lints warn`
warning: 1 warning emitted
Compiling string_cache_codegen v0.5.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=string_cache_codegen CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.5.1 CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION='A codegen library for string-cache, developed as part of the Servo project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT / Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=string_cache_codegen CARGO_PKG_REPOSITORY='https://github.com/servo/string-cache' CARGO_PKG_VERSION=0.5.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=5 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name string_cache_codegen --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache_codegen-0.5.1/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fbe78d6ecd0e5a03 -C extra-filename=-fbe78d6ecd0e5a03 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern phf_generator=/home/pi/deno/target/debug/deps/libphf_generator-43d16a343d6a996e.rmeta --extern phf_shared=/home/pi/deno/target/debug/deps/libphf_shared-ba80ea98d421f251.rmeta --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rmeta --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rmeta --cap-lints warn`
Compiling phf_macros v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=phf_macros CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_macros-0.8.0 CARGO_PKG_AUTHORS='Steven Fackler <sfackler@gmail.com>' CARGO_PKG_DESCRIPTION='Macros to generate types in the phf crate' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=phf_macros CARGO_PKG_REPOSITORY='https://github.com/sfackler/rust-phf' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name phf_macros --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf_macros-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=d2df873b6d55c0f8 -C extra-filename=-d2df873b6d55c0f8 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern phf_generator=/home/pi/deno/target/debug/deps/libphf_generator-43d16a343d6a996e.rlib --extern phf_shared=/home/pi/deno/target/debug/deps/libphf_shared-ba80ea98d421f251.rlib --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:41:7
|
41 | #[project]
| ^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:79:7
|
79 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:110:7
|
110 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:130:7
|
130 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:140:7
|
140 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/flatten.rs:150:7
|
150 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/map.rs:58:7
|
58 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/future/remote_handle.rs:93:7
|
93 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:41:7
|
41 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:84:7
|
84 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:120:7
|
120 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:145:7
|
145 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:155:7
|
155 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten.rs:165:7
|
165 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_future/try_flatten_err.rs:38:7
|
38 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/maybe_done.rs:50:7
|
50 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/maybe_done.rs:96:7
|
96 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_maybe_done.rs:35:7
|
35 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/try_maybe_done.rs:81:7
|
81 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:61:7
|
61 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:91:7
|
91 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:122:7
|
122 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:131:7
|
131 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:140:7
|
140 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:149:7
|
149 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:185:11
|
185 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:198:11
|
198 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:217:11
|
217 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:230:11
|
230 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:243:11
|
243 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:252:11
|
252 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:267:11
|
267 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:286:11
|
286 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/future/either.rs:298:11
|
298 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/chain.rs:45:7
|
45 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/collect.rs:46:7
|
46 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/concat.rs:37:7
|
37 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/enumerate.rs:38:7
|
38 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/filter.rs:74:7
|
74 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/filter_map.rs:64:7
|
64 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/flatten.rs:44:7
|
44 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/fold.rs:67:7
|
67 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/forward.rs:48:7
|
48 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/for_each.rs:63:7
|
63 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/fuse.rs:44:7
|
44 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/map.rs:54:7
|
54 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/peek.rs:45:7
|
45 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/peek.rs:74:7
|
74 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/skip.rs:38:7
|
38 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/skip_while.rs:74:7
|
74 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/take.rs:35:7
|
35 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/take_while.rs:64:7
|
64 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/take_until.rs:124:7
|
124 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/then.rs:66:7
|
66 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/zip.rs:80:7
|
80 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/chunks.rs:44:7
|
44 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/ready_chunks.rs:39:7
|
39 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/scan.rs:78:7
|
78 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/catch_unwind.rs:29:7
|
29 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/and_then.rs:53:7
|
53 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/or_else.rs:53:7
|
53 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_for_each.rs:53:7
|
53 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_filter.rs:72:7
|
72 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_filter_map.rs:60:7
|
60 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_flatten.rs:54:7
|
54 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_collect.rs:44:7
|
44 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_concat.rs:37:7
|
37 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_fold.rs:67:7
|
67 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_unfold.rs:99:7
|
99 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_skip_while.rs:65:7
|
65 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/once.rs:42:7
|
42 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/select.rs:61:7
|
61 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/select.rs:92:7
|
92 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/unfold.rs:96:7
|
96 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/fanout.rs:36:7
|
36 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/fanout.rs:68:7
|
68 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/fanout.rs:82:7
|
82 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/fanout.rs:95:7
|
95 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/fanout.rs:109:7
|
109 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/with.rs:74:7
|
74 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/with.rs:109:7
|
109 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/with_flat_map.rs:55:7
|
55 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/with_flat_map.rs:122:7
|
122 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/sink/buffer.rs:32:7
|
32 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/buf_reader.rs:71:7
|
71 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/buf_reader.rs:126:7
|
126 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/buf_writer.rs:54:7
|
54 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/chain.rs:85:7
|
85 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/chain.rs:103:7
|
103 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/chain.rs:139:7
|
139 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/chain.rs:155:7
|
155 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/copy_buf.rs:62:7
|
62 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/into_sink.rs:33:7
|
33 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/lines.rs:37:7
|
37 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/take.rs:86:7
|
86 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/take.rs:112:7
|
112 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/io/take.rs:127:7
|
127 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_for_each_concurrent.rs:71:7
|
71 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/try_stream/try_buffer_unordered.rs:46:7
|
46 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/for_each_concurrent.rs:69:7
|
69 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/buffered.rs:62:7
|
62 | #[project]
| ^^^^^^^
warning: use of deprecated macro `project`: consider naming projected type by passing `project` argument to #[pin_project] attribute instead, see release note <https://github.com/taiki-e/pin-project/releases/tag/v0.4.21> for details
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-util-0.3.5/src/stream/stream/buffer_unordered.rs:65:7
|
65 | #[project]
| ^^^^^^^
Compiling multipart v0.17.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=multipart CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0 CARGO_PKG_AUTHORS='Austin Bonander <austin.bonander@gmail.com>' CARGO_PKG_DESCRIPTION='A backend-agnostic extension for HTTP libraries that provides support for POST multipart/form-data requests on both client and server.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=multipart CARGO_PKG_REPOSITORY='http://github.com/abonander/multipart' CARGO_PKG_VERSION=0.17.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=17 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name multipart /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="buf_redux"' --cfg 'feature="httparse"' --cfg 'feature="quick-error"' --cfg 'feature="safemem"' --cfg 'feature="server"' --cfg 'feature="twoway"' -C metadata=589869283cb4a4c4 -C extra-filename=-589869283cb4a4c4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern buf_redux=/home/pi/deno/target/debug/deps/libbuf_redux-aeedda22e9aa4af3.rmeta --extern httparse=/home/pi/deno/target/debug/deps/libhttparse-f42c365739b0786a.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern mime=/home/pi/deno/target/debug/deps/libmime-290184f10e4f7c13.rmeta --extern mime_guess=/home/pi/deno/target/debug/deps/libmime_guess-c539a7dc4aea4e9f.rmeta --extern quick_error=/home/pi/deno/target/debug/deps/libquick_error-d1b43140215ea0f4.rmeta --extern rand=/home/pi/deno/target/debug/deps/librand-56b345ceeb9710da.rmeta --extern safemem=/home/pi/deno/target/debug/deps/libsafemem-6b0f2f6365ac0996.rmeta --extern tempfile=/home/pi/deno/target/debug/deps/libtempfile-d94d068ab1601e5b.rmeta --extern twoway=/home/pi/deno/target/debug/deps/libtwoway-a4e7e7aefeb5cfa6.rmeta --cap-lints warn`
warning: unnecessary braces around method argument
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/save.rs:667:42
|
667 | occupied.into_mut().push({ SavedField { headers, data }});
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: remove these braces
|
= note: `#[warn(unused_braces)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:541:41
|
541 | display(x) -> ("{}:\n{}", x.description(), headers)
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:545:44
|
545 | display(x) -> ("{}: {}: {}", x.description(), reason, cause)
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:551:40
|
551 | display(x) -> ("{}: {}", x.description(), err)
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:557:46
|
557 | display(this) -> ("{}: {}", this.description(), cont_type)
| ^^^^^^^^^^^
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:565:40
|
565 | display(x) -> ("{}: {}", x.description(), err)
| ^^^^^^^^^^^
warning: constant is never used: `GENERIC_PARSE_ERR`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/multipart-0.17.0/src/server/field.rs:534:1
|
534 | const GENERIC_PARSE_ERR: &str = "an error occurred while parsing field headers";
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
Compiling ast_node v0.7.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=ast_node CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ast_node-0.7.0 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Macros for ast nodes.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=ast_node CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name ast_node --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ast_node-0.7.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type proc-macro --emit=dep-info,link -C prefer-dynamic -C embed-bitcode=no -C debuginfo=2 -C metadata=51fbd10623f27983 -C extra-filename=-51fbd10623f27983 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern darling=/home/pi/deno/target/debug/deps/libdarling-23278163c6b04de1.rlib --extern pmutil=/home/pi/deno/target/debug/deps/libpmutil-d27e04ba95757b59.rlib --extern proc_macro2=/home/pi/deno/target/debug/deps/libproc_macro2-3fd3b8378f22e79c.rlib --extern quote=/home/pi/deno/target/debug/deps/libquote-8992f20140e1ec45.rlib --extern swc_macros_common=/home/pi/deno/target/debug/deps/libswc_macros_common-0903cada70cb7c96.rlib --extern syn=/home/pi/deno/target/debug/deps/libsyn-f4aa7e2af99c1cfb.rlib --extern proc_macro --cap-lints warn`
warning: 7 warnings emitted
Compiling rusty_v8 v0.11.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0 CARGO_PKG_AUTHORS='the Deno authors' CARGO_PKG_DESCRIPTION='Rust bindings to V8' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=rusty_v8 CARGO_PKG_REPOSITORY='https://github.com/denoland/rusty_v8' CARGO_PKG_VERSION=0.11.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=fe6d99f25981b70d -C extra-filename=-fe6d99f25981b70d --out-dir /home/pi/deno/target/debug/build/rusty_v8-fe6d99f25981b70d -L dependency=/home/pi/deno/target/debug/deps --extern cargo_gn=/home/pi/deno/target/debug/deps/libcargo_gn-0bc45b40412dc090.rlib --extern which=/home/pi/deno/target/debug/deps/libwhich-a0a969a99aff3f8f.rlib --cap-lints warn`
Compiling swc_atoms v0.2.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=build_script_build CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_atoms-0.2.4 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Atoms for the swc project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_atoms CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name build_script_build --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_atoms-0.2.4/build.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C embed-bitcode=no -C debuginfo=2 -C metadata=33555e57f43ae4e8 -C extra-filename=-33555e57f43ae4e8 --out-dir /home/pi/deno/target/debug/build/swc_atoms-33555e57f43ae4e8 -L dependency=/home/pi/deno/target/debug/deps --extern string_cache_codegen=/home/pi/deno/target/debug/deps/libstring_cache_codegen-fbe78d6ecd0e5a03.rlib --cap-lints warn`
Compiling phf v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=phf CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.8.0 CARGO_PKG_AUTHORS='Steven Fackler <sfackler@gmail.com>' CARGO_PKG_DESCRIPTION='Runtime support for perfect hash function data structures' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=phf CARGO_PKG_REPOSITORY='https://github.com/sfackler/rust-phf' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name phf --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/phf-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="macros"' --cfg 'feature="phf_macros"' --cfg 'feature="proc-macro-hack"' --cfg 'feature="std"' -C metadata=3b89e43ce8bce09f -C extra-filename=-3b89e43ce8bce09f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern phf_macros=/home/pi/deno/target/debug/deps/libphf_macros-d2df873b6d55c0f8.so --extern phf_shared=/home/pi/deno/target/debug/deps/libphf_shared-ba80ea98d421f251.rmeta --extern proc_macro_hack=/home/pi/deno/target/debug/deps/libproc_macro_hack-a166a5799dd8092d.so --cap-lints warn`
Running `/home/pi/deno/target/debug/build/rusty_v8-fe6d99f25981b70d/build-script-build`
[rusty_v8 0.11.0] Downloading https://github.com/denoland/ninja_gn_binaries/archive/20200827.tar.gz... Done.
[rusty_v8 0.11.0] using Chromiums clang
[rusty_v8 0.11.0] clang_base_path /home/pi/deno/target/debug/clang
Running `/home/pi/deno/target/debug/build/swc_atoms-33555e57f43ae4e8/build-script-build`
Compiling url v2.1.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=url CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.1.1 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/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=url CARGO_PKG_REPOSITORY='https://github.com/servo/rust-url' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name url /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.1.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="serde"' -C metadata=1763eeb18549db2c -C extra-filename=-1763eeb18549db2c --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern idna=/home/pi/deno/target/debug/deps/libidna-83d81db6ca794181.rmeta --extern matches=/home/pi/deno/target/debug/deps/libmatches-21b49b161ff46c1a.rmeta --extern percent_encoding=/home/pi/deno/target/debug/deps/libpercent_encoding-c99a22928827f829.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=serde_json CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57 CARGO_PKG_AUTHORS='Erick Tryzelaar <erick.tryzelaar@gmail.com>:David Tolnay <dtolnay@gmail.com>' CARGO_PKG_DESCRIPTION='A JSON serialization file format' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_json CARGO_PKG_REPOSITORY='https://github.com/serde-rs/json' CARGO_PKG_VERSION=1.0.57 CARGO_PKG_VERSION_MAJOR=1 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=57 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/serde_json-5858899324de01fc/out rustc --crate-name serde_json --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.57/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="indexmap"' --cfg 'feature="preserve_order"' --cfg 'feature="std"' -C metadata=021befdfc93ee8a4 -C extra-filename=-021befdfc93ee8a4 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern indexmap=/home/pi/deno/target/debug/deps/libindexmap-d21a11fa86c9a564.rmeta --extern itoa=/home/pi/deno/target/debug/deps/libitoa-e569e81afa0271ce.rmeta --extern ryu=/home/pi/deno/target/debug/deps/libryu-fbccce0aee0e54ee.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --cap-lints warn --cfg limb_width_64`
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.1.1/src/lib.rs:2452:82
|
2452 | .map_err(|err| Error::invalid_value(Unexpected::Str(s), &err.description()))
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/url-2.1.1/src/parser.rs:95:32
|
95 | fmt::Display::fmt(self.description(), f)
| ^^^^^^^^^^^
warning: 102 warnings emitted
Compiling string_cache v0.8.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=string_cache CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.8.0 CARGO_PKG_AUTHORS='The Servo Project Developers' CARGO_PKG_DESCRIPTION='A string interning library for Rust, developed as part of the Servo project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE='MIT / Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=string_cache CARGO_PKG_REPOSITORY='https://github.com/servo/string-cache' 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='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name string_cache --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/string_cache-0.8.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=7ef7cf23ca1c3356 -C extra-filename=-7ef7cf23ca1c3356 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --extern debug_unreachable=/home/pi/deno/target/debug/deps/libdebug_unreachable-93f6a6d70310f2d5.rmeta --extern phf_shared=/home/pi/deno/target/debug/deps/libphf_shared-ba80ea98d421f251.rmeta --extern precomputed_hash=/home/pi/deno/target/debug/deps/libprecomputed_hash-86cb4542a18f30e4.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=num_bigint CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6 CARGO_PKG_AUTHORS='The Rust Project Developers' CARGO_PKG_DESCRIPTION='Big integer implementation for Rust' CARGO_PKG_HOMEPAGE='https://github.com/rust-num/num-bigint' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=num-bigint CARGO_PKG_REPOSITORY='https://github.com/rust-num/num-bigint' CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/num-bigint-7ff96723fa57db7d/out rustc --crate-name num_bigint /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/num-bigint-0.2.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="serde"' --cfg 'feature="std"' -C metadata=1e0ab47fdb905c95 -C extra-filename=-1e0ab47fdb905c95 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern num_integer=/home/pi/deno/target/debug/deps/libnum_integer-faa83fcd3d5c7ed7.rmeta --extern num_traits=/home/pi/deno/target/debug/deps/libnum_traits-585bf529f7058ba5.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --cap-lints warn --cfg has_i128`
[rusty_v8 0.11.0] Downloading https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-llvmorg-12-init-4187-g33ce275f-1.tgz .......... Done.
[rusty_v8 0.11.0] cargo:warning=Not using sccache or ccache
[rusty_v8 0.11.0] Installing Debian sid arm64 root image: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0/build/linux/debian_sid_arm64-sysroot
[rusty_v8 0.11.0] Downloading https://commondatastorage.googleapis.com/chrome-linux-sysroot/toolchain/ef67b6ca8fd6e2e51515a243d043d1ea4caf45e6/debian_sid_arm64_sysroot.tar.xz
warning: 2 warnings emitted
Compiling dprint-core v0.31.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=dprint_core CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dprint-core-0.31.0 CARGO_PKG_AUTHORS='David Sherret <dsherret@gmail.com>' CARGO_PKG_DESCRIPTION='Core rust library for dprint.' CARGO_PKG_HOMEPAGE='https://github.com/dprint/dprint/tree/master/crates/core' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=dprint-core CARGO_PKG_REPOSITORY='https://github.com/dprint/dprint' CARGO_PKG_VERSION=0.31.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=31 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name dprint_core --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/dprint-core-0.31.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="formatting"' -C metadata=60a911d7071d9db5 -C extra-filename=-60a911d7071d9db5 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --cap-lints warn`
Compiling futures-executor v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures_executor CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-executor-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='Executors for asynchronous tasks based on the futures-rs library.
' CARGO_PKG_HOMEPAGE='https://rust-lang.github.io/futures-rs' CARGO_PKG_LICENSE='MIT OR Apache-2.0' CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=futures-executor CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures_executor --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-executor-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="std"' -C metadata=5f4a8daf879c1201 -C extra-filename=-5f4a8daf879c1201 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_task=/home/pi/deno/target/debug/deps/libfutures_task-b91861f8b74f2755.rmeta --extern futures_util=/home/pi/deno/target/debug/deps/libfutures_util-83840ea1a17883fd.rmeta --cap-lints warn`
Compiling h2 v0.2.6
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=h2 CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.2.6 CARGO_PKG_AUTHORS='Carl Lerche <me@carllerche.com>:Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='An HTTP/2.0 client and server' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=h2 CARGO_PKG_REPOSITORY='https://github.com/hyperium/h2' CARGO_PKG_VERSION=0.2.6 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=6 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name h2 --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/h2-0.2.6/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=3a2136a302b4b19a -C extra-filename=-3a2136a302b4b19a --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern fnv=/home/pi/deno/target/debug/deps/libfnv-ce4aa5efcd7fd8c5.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_sink=/home/pi/deno/target/debug/deps/libfutures_sink-bf91bc8415e1de36.rmeta --extern futures_util=/home/pi/deno/target/debug/deps/libfutures_util-83840ea1a17883fd.rmeta --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --extern indexmap=/home/pi/deno/target/debug/deps/libindexmap-d21a11fa86c9a564.rmeta --extern slab=/home/pi/deno/target/debug/deps/libslab-0c4e8517bcd1e211.rmeta --extern tokio=/home/pi/deno/target/debug/deps/libtokio-7b23a3b906acbd56.rmeta --extern tokio_util=/home/pi/deno/target/debug/deps/libtokio_util-cb31629b99fca3a8.rmeta --extern tracing=/home/pi/deno/target/debug/deps/libtracing-791503926adf223e.rmeta --cap-lints warn`
Compiling serde_urlencoded v0.6.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=serde_urlencoded CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.6.1 CARGO_PKG_AUTHORS='Anthony Ramine <n.oxyde@gmail.com>' CARGO_PKG_DESCRIPTION='`x-www-form-urlencoded` meets Serde' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=serde_urlencoded CARGO_PKG_REPOSITORY='https://github.com/nox/serde_urlencoded' CARGO_PKG_VERSION=0.6.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=6 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name serde_urlencoded /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.6.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=b7b0e839ce663119 -C extra-filename=-b7b0e839ce663119 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern dtoa=/home/pi/deno/target/debug/deps/libdtoa-7042129fab6907fb.rmeta --extern itoa=/home/pi/deno/target/debug/deps/libitoa-e569e81afa0271ce.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --extern url=/home/pi/deno/target/debug/deps/liburl-1763eeb18549db2c.rmeta --cap-lints warn`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.6.1/src/ser/mod.rs:83:32
|
83 | fn cause(&self) -> Option<&error::Error> {
| ^^^^^^^^^^^^ help: use `dyn`: `dyn error::Error`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.6.1/src/ser/mod.rs:78:37
|
78 | Error::Utf8(ref err) => error::Error::description(err),
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: 2 warnings emitted
Compiling tungstenite v0.11.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tungstenite CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tungstenite-0.11.1 CARGO_PKG_AUTHORS='Alexey Galakhov:Daniel Abramov' CARGO_PKG_DESCRIPTION='Lightweight stream-based WebSocket implementation' CARGO_PKG_HOMEPAGE='https://github.com/snapview/tungstenite-rs' CARGO_PKG_LICENSE=MIT/Apache-2.0 CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tungstenite CARGO_PKG_REPOSITORY='https://github.com/snapview/tungstenite-rs' CARGO_PKG_VERSION=0.11.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tungstenite --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tungstenite-0.11.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=867fe2fac67a1f7f -C extra-filename=-867fe2fac67a1f7f --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern base64=/home/pi/deno/target/debug/deps/libbase64-524f7420c94cbb9e.rmeta --extern byteorder=/home/pi/deno/target/debug/deps/libbyteorder-3621f46a2321b047.rmeta --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --extern httparse=/home/pi/deno/target/debug/deps/libhttparse-f42c365739b0786a.rmeta --extern input_buffer=/home/pi/deno/target/debug/deps/libinput_buffer-7a2163e45df85c5f.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern rand=/home/pi/deno/target/debug/deps/librand-f1f7509fb7526377.rmeta --extern sha1=/home/pi/deno/target/debug/deps/libsha1-e880066d60aa74da.rmeta --extern url=/home/pi/deno/target/debug/deps/liburl-1763eeb18549db2c.rmeta --extern utf8=/home/pi/deno/target/debug/deps/libutf8-6efe0285ceb79307.rmeta --cap-lints warn`
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_atoms CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_atoms-0.2.4 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Atoms for the swc project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_atoms CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.2.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=2 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' OUT_DIR=/home/pi/deno/target/debug/build/swc_atoms-d9e43a00f000862c/out rustc --crate-name swc_atoms --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_atoms-0.2.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=26ea61c614063713 -C extra-filename=-26ea61c614063713 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern string_cache=/home/pi/deno/target/debug/deps/libstring_cache-7ef7cf23ca1c3356.rmeta --cap-lints warn`
Compiling sourcemap v6.0.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=sourcemap CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sourcemap-6.0.1 CARGO_PKG_AUTHORS='Sentry <hello@sentry.io>' CARGO_PKG_DESCRIPTION='Basic sourcemap handling for Rust' CARGO_PKG_HOMEPAGE='https://github.com/getsentry/rust-sourcemap' CARGO_PKG_LICENSE=BSD-3-Clause CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=sourcemap CARGO_PKG_REPOSITORY='' CARGO_PKG_VERSION=6.0.1 CARGO_PKG_VERSION_MAJOR=6 CARGO_PKG_VERSION_MINOR=0 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name sourcemap --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/sourcemap-6.0.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 -C metadata=f57ae999e2333ca3 -C extra-filename=-f57ae999e2333ca3 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern base64=/home/pi/deno/target/debug/deps/libbase64-89d107c6e4fe3ff2.rmeta --extern if_chain=/home/pi/deno/target/debug/deps/libif_chain-8cc4989a57bb1742.rmeta --extern lazy_static=/home/pi/deno/target/debug/deps/liblazy_static-f21e17e917b8469c.rmeta --extern regex=/home/pi/deno/target/debug/deps/libregex-970ea3d0de1cd2ad.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --extern serde_json=/home/pi/deno/target/debug/deps/libserde_json-021befdfc93ee8a4.rmeta --extern url=/home/pi/deno/target/debug/deps/liburl-1763eeb18549db2c.rmeta --cap-lints warn`
[rusty_v8 0.11.0] Installing Debian sid amd64 root image: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0/build/linux/debian_sid_amd64-sysroot
[rusty_v8 0.11.0] Downloading https://commondatastorage.googleapis.com/chrome-linux-sysroot/toolchain/5f64b417e1018dcf8fcc81dc2714e0f264b9b911/debian_sid_amd64_sysroot.tar.xz
Compiling futures v0.3.5
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=futures CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-0.3.5 CARGO_PKG_AUTHORS='Alex Crichton <alex@alexcrichton.com>' CARGO_PKG_DESCRIPTION='An implementation of futures and streams featuring zero allocations,
composability, and iterator-like interfaces.
' 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 CARGO_PKG_REPOSITORY='https://github.com/rust-lang/futures-rs' CARGO_PKG_VERSION=0.3.5 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=3 CARGO_PKG_VERSION_PATCH=5 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name futures --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/futures-0.3.5/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="alloc"' --cfg 'feature="async-await"' --cfg 'feature="default"' --cfg 'feature="executor"' --cfg 'feature="futures-executor"' --cfg 'feature="std"' -C metadata=7a53d40af64609ef -C extra-filename=-7a53d40af64609ef --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_channel=/home/pi/deno/target/debug/deps/libfutures_channel-258d5cb42061defb.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_executor=/home/pi/deno/target/debug/deps/libfutures_executor-5f4a8daf879c1201.rmeta --extern futures_io=/home/pi/deno/target/debug/deps/libfutures_io-d171e1b53820a463.rmeta --extern futures_sink=/home/pi/deno/target/debug/deps/libfutures_sink-bf91bc8415e1de36.rmeta --extern futures_task=/home/pi/deno/target/debug/deps/libfutures_task-b91861f8b74f2755.rmeta --extern futures_util=/home/pi/deno/target/debug/deps/libfutures_util-83840ea1a17883fd.rmeta --cap-lints warn`
Compiling tokio-tungstenite v0.11.0
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=tokio_tungstenite CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-tungstenite-0.11.0 CARGO_PKG_AUTHORS='Daniel Abramov <dabramov@snapview.de>:Alexey Galakhov <agalakhov@snapview.de>' CARGO_PKG_DESCRIPTION='Tokio binding for Tungstenite, the Lightweight stream-based WebSocket implementation' CARGO_PKG_HOMEPAGE='https://github.com/snapview/tokio-tungstenite' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=tokio-tungstenite CARGO_PKG_REPOSITORY='https://github.com/snapview/tokio-tungstenite' CARGO_PKG_VERSION=0.11.0 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=11 CARGO_PKG_VERSION_PATCH=0 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name tokio_tungstenite --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tokio-tungstenite-0.11.0/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="connect"' --cfg 'feature="default"' --cfg 'feature="stream"' -C metadata=c237c6a5d10d9008 -C extra-filename=-c237c6a5d10d9008 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern futures_util=/home/pi/deno/target/debug/deps/libfutures_util-83840ea1a17883fd.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern pin_project=/home/pi/deno/target/debug/deps/libpin_project-eb54726e97c386d5.rmeta --extern tokio=/home/pi/deno/target/debug/deps/libtokio-7b23a3b906acbd56.rmeta --extern tungstenite=/home/pi/deno/target/debug/deps/libtungstenite-867fe2fac67a1f7f.rmeta --cap-lints warn`
Compiling swc_common v0.10.4
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_common CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_common-0.10.4 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Common utilities for the swc project.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_common CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.10.4 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=10 CARGO_PKG_VERSION_PATCH=4 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_common --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_common-0.10.4/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="sourcemap"' -C metadata=688eaa622ece0cba -C extra-filename=-688eaa622ece0cba --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern ast_node=/home/pi/deno/target/debug/deps/libast_node-51fbd10623f27983.so --extern cfg_if=/home/pi/deno/target/debug/deps/libcfg_if-ae7713a377e1c745.rmeta --extern either=/home/pi/deno/target/debug/deps/libeither-49681a293766e0f9.rmeta --extern from_variant=/home/pi/deno/target/debug/deps/libfrom_variant-cad9b60ab157cca0.so --extern fxhash=/home/pi/deno/target/debug/deps/libfxhash-91f6ca325756c481.rmeta --extern log=/home/pi/deno/target/debug/deps/liblog-5a119a68bb15af12.rmeta --extern once_cell=/home/pi/deno/target/debug/deps/libonce_cell-65477b46ede36c3e.rmeta --extern owning_ref=/home/pi/deno/target/debug/deps/libowning_ref-f2da757c9ef63f61.rmeta --extern scoped_tls=/home/pi/deno/target/debug/deps/libscoped_tls-db4089e3ec2030d9.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --extern sourcemap=/home/pi/deno/target/debug/deps/libsourcemap-f57ae999e2333ca3.rmeta --extern swc_visit=/home/pi/deno/target/debug/deps/libswc_visit-fb2128e84d890010.rmeta --extern unicode_width=/home/pi/deno/target/debug/deps/libunicode_width-fbbe897f9c536b45.rmeta --cap-lints warn`
Compiling hyper v0.13.7
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=hyper CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.7 CARGO_PKG_AUTHORS='Sean McArthur <sean@seanmonstar.com>' CARGO_PKG_DESCRIPTION='A fast and correct HTTP library.' CARGO_PKG_HOMEPAGE='https://hyper.rs' CARGO_PKG_LICENSE=MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=hyper CARGO_PKG_REPOSITORY='https://github.com/hyperium/hyper' CARGO_PKG_VERSION=0.13.7 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=13 CARGO_PKG_VERSION_PATCH=7 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name hyper --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/hyper-0.13.7/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' --cfg 'feature="runtime"' --cfg 'feature="socket2"' --cfg 'feature="stream"' --cfg 'feature="tcp"' -C metadata=e95958ca1fb8a8b0 -C extra-filename=-e95958ca1fb8a8b0 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern bytes=/home/pi/deno/target/debug/deps/libbytes-4b5e7af4ccbf8647.rmeta --extern futures_channel=/home/pi/deno/target/debug/deps/libfutures_channel-258d5cb42061defb.rmeta --extern futures_core=/home/pi/deno/target/debug/deps/libfutures_core-c78d66d41530c5ee.rmeta --extern futures_util=/home/pi/deno/target/debug/deps/libfutures_util-83840ea1a17883fd.rmeta --extern h2=/home/pi/deno/target/debug/deps/libh2-3a2136a302b4b19a.rmeta --extern http=/home/pi/deno/target/debug/deps/libhttp-6f5bfe4467c01f9c.rmeta --extern http_body=/home/pi/deno/target/debug/deps/libhttp_body-d7084d070d338fd7.rmeta --extern httparse=/home/pi/deno/target/debug/deps/libhttparse-f42c365739b0786a.rmeta --extern itoa=/home/pi/deno/target/debug/deps/libitoa-e569e81afa0271ce.rmeta --extern pin_project=/home/pi/deno/target/debug/deps/libpin_project-eb54726e97c386d5.rmeta --extern socket2=/home/pi/deno/target/debug/deps/libsocket2-48c5f5bd531a4481.rmeta --extern time=/home/pi/deno/target/debug/deps/libtime-7e19902a4bd44ce3.rmeta --extern tokio=/home/pi/deno/target/debug/deps/libtokio-7b23a3b906acbd56.rmeta --extern tower_service=/home/pi/deno/target/debug/deps/libtower_service-da5fd2ce7c0a0f39.rmeta --extern tracing=/home/pi/deno/target/debug/deps/libtracing-791503926adf223e.rmeta --extern want=/home/pi/deno/target/debug/deps/libwant-dbab5ac557ac5f61.rmeta --cap-lints warn`
Compiling swc_ecma_ast v0.33.1
Running `CARGO=/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/bin/cargo CARGO_CRATE_NAME=swc_ecma_ast CARGO_MANIFEST_DIR=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_ast-0.33.1 CARGO_PKG_AUTHORS='강동윤 <kdy1997.dev@gmail.com>' CARGO_PKG_DESCRIPTION='Ecmascript ast.' CARGO_PKG_HOMEPAGE='' CARGO_PKG_LICENSE=Apache-2.0/MIT CARGO_PKG_LICENSE_FILE='' CARGO_PKG_NAME=swc_ecma_ast CARGO_PKG_REPOSITORY='https://github.com/swc-project/swc.git' CARGO_PKG_VERSION=0.33.1 CARGO_PKG_VERSION_MAJOR=0 CARGO_PKG_VERSION_MINOR=33 CARGO_PKG_VERSION_PATCH=1 CARGO_PKG_VERSION_PRE='' LD_LIBRARY_PATH='/home/pi/deno/target/debug/deps:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib:/home/pi/.rustup/toolchains/stable-aarch64-unknown-linux-gnu/lib' rustc --crate-name swc_ecma_ast --edition=2018 /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/swc_ecma_ast-0.33.1/src/lib.rs --error-format=json --json=diagnostic-rendered-ansi,artifacts --crate-type lib --emit=dep-info,metadata,link -C embed-bitcode=no -C debuginfo=2 --cfg 'feature="default"' -C metadata=47f57b02c8ad2902 -C extra-filename=-47f57b02c8ad2902 --out-dir /home/pi/deno/target/debug/deps -L dependency=/home/pi/deno/target/debug/deps --extern enum_kind=/home/pi/deno/target/debug/deps/libenum_kind-606486bb5c14712b.so --extern is_macro=/home/pi/deno/target/debug/deps/libis_macro-7a147619997d9e13.so --extern num_bigint=/home/pi/deno/target/debug/deps/libnum_bigint-1e0ab47fdb905c95.rmeta --extern serde=/home/pi/deno/target/debug/deps/libserde-ae586fad8c551d3f.rmeta --extern string_enum=/home/pi/deno/target/debug/deps/libstring_enum-4ecadef19b698540.so --extern swc_atoms=/home/pi/deno/target/debug/deps/libswc_atoms-26ea61c614063713.rmeta --extern swc_common=/home/pi/deno/target/debug/deps/libswc_common-688eaa622ece0cba.rmeta --cap-lints warn`
[rusty_v8 0.11.0] The current directory is /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0
[rusty_v8 0.11.0] gn gen --root=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0 /home/pi/deno/target/debug/gn_out
[rusty_v8 0.11.0] running: "/home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn" "--root=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0" "gen" "/home/pi/deno/target/debug/gn_out" "--args=is_debug=true clang_base_path=\"/home/pi/deno/target/debug/clang\" target_cpu=\"arm64\" use_sysroot=true"
[rusty_v8 0.11.0] /home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn: 1: /home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn: Syntax error: "(" unexpected
[rusty_v8 0.11.0] thread 'main' panicked at '
[rusty_v8 0.11.0] command did not execute successfully, got: exit code: 2
[rusty_v8 0.11.0]
[rusty_v8 0.11.0] build script failed, must exit now', /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo_gn-0.0.15/src/lib.rs:203:3
[rusty_v8 0.11.0] note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
The following warnings were emitted during compilation:
warning: Not using sccache or ccache
error: failed to run custom build command for `rusty_v8 v0.11.0`
Caused by:
process didn't exit successfully: `/home/pi/deno/target/debug/build/rusty_v8-fe6d99f25981b70d/build-script-build` (exit code: 101)
--- stdout
Downloading https://github.com/denoland/ninja_gn_binaries/archive/20200827.tar.gz... Done.
using Chromiums clang
clang_base_path /home/pi/deno/target/debug/clang
Downloading https://commondatastorage.googleapis.com/chromium-browser-clang/Linux_x64/clang-llvmorg-12-init-4187-g33ce275f-1.tgz .......... Done.
cargo:warning=Not using sccache or ccache
Installing Debian sid arm64 root image: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0/build/linux/debian_sid_arm64-sysroot
Downloading https://commondatastorage.googleapis.com/chrome-linux-sysroot/toolchain/ef67b6ca8fd6e2e51515a243d043d1ea4caf45e6/debian_sid_arm64_sysroot.tar.xz
Installing Debian sid amd64 root image: /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0/build/linux/debian_sid_amd64-sysroot
Downloading https://commondatastorage.googleapis.com/chrome-linux-sysroot/toolchain/5f64b417e1018dcf8fcc81dc2714e0f264b9b911/debian_sid_amd64_sysroot.tar.xz
The current directory is /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0
gn gen --root=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0 /home/pi/deno/target/debug/gn_out
running: "/home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn" "--root=/home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rusty_v8-0.11.0" "gen" "/home/pi/deno/target/debug/gn_out" "--args=is_debug=true clang_base_path=\"/home/pi/deno/target/debug/clang\" target_cpu=\"arm64\" use_sysroot=true"
--- stderr
/home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn: 1: /home/pi/deno/target/debug/ninja_gn_binaries-20200827/linux64/gn: Syntax error: "(" unexpected
thread 'main' panicked at '
command did not execute successfully, got: exit code: 2
build script failed, must exit now', /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/cargo_gn-0.0.15/src/lib.rs:203:3
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
warning: build failed, waiting for other jobs to finish...
error: build failed
pi@deno:~/deno $
pi@deno:~/deno $ cargo build -vv
Fresh unicode-xid v0.2.1
Fresh cfg-if v0.1.10
Fresh autocfg v1.0.1
Fresh lazy_static v1.4.0
Fresh once_cell v1.4.1
Fresh fnv v1.0.7
Fresh itoa v0.4.6
Fresh version_check v0.9.2
Fresh matches v0.1.8
Fresh tinyvec v0.3.4
Fresh ppv-lite86 v0.2.9
Fresh hashbrown v0.9.0
Fresh proc-macro-hack v0.5.18
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/arrayvec.rs:404:7
|
404 | replace(&mut self.data.as_slice_mut()[self.len], val);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/tinyvec-0.3.4/src/tinyvec.rs:150:9
|
150 | replace(self, TinyVec::Heap(v));
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 2 warnings emitted
warning: associated type `u32x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:225:10
|
225 | type u32x4: u32x4<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4`
|
= note: `#[warn(non_camel_case_types)]` on by default
warning: associated type `u64x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:226:10
|
226 | type u64x2: u64x2<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2`
warning: associated type `u128x1` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:227:10
|
227 | type u128x1: u128x1<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x1`
warning: associated type `u32x4x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:229:10
|
229 | type u32x4x2: u32x4x2<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4x2`
warning: associated type `u64x2x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:230:10
|
230 | type u64x2x2: u64x2x2<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2x2`
warning: associated type `u64x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:231:10
|
231 | type u64x4: u64x4<Self>;
| ^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x4`
warning: associated type `u128x2` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:232:10
|
232 | type u128x2: u128x2<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x2`
warning: associated type `u32x4x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:234:10
|
234 | type u32x4x4: u32x4x4<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U32x4x4`
warning: associated type `u64x2x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:235:10
|
235 | type u64x2x4: u64x2x4<Self>;
| ^^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U64x2x4`
Fresh percent-encoding v2.1.0
warning: associated type `u128x4` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/types.rs:236:10
|
236 | type u128x4: u128x4<Self>;
| ^^^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U128x4`
warning: unused variable: `q`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.9/src/generic.rs:66:13
|
66 | fn from(q: [u64; 4]) -> Self {
| ^ help: if this is intentional, prefix it with an underscore: `_q`
|
= note: `#[warn(unused_variables)]` on by default
warning: 11 warnings emitted
Fresh slab v0.4.2
Fresh futures-core v0.3.5
Fresh regex-syntax v0.6.18
Fresh bytes v0.5.6
Fresh siphasher v0.3.3
Fresh futures-sink v0.3.5
Fresh cc v1.0.59
Fresh futures-io v0.3.5
Fresh pin-utils v0.1.0
Fresh ident_case v1.0.1
Fresh strsim v0.9.3
Fresh scoped-tls v1.0.0
warning: use of deprecated trait `std::ascii::AsciiExt`: use inherent methods instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1/src/lib.rs:25:5
|
25 | use std::ascii::AsciiExt;
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: unused import: `std::ascii::AsciiExt`
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ident_case-1.0.1/src/lib.rs:25:5
|
25 | use std::ascii::AsciiExt;
| ^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unused_imports)]` on by default
warning: 2 warnings emitted
Fresh unicode-width v0.1.8
Fresh pin-project-lite v0.1.7
Fresh arc-swap v0.4.7
Fresh either v1.6.0
Fresh stable_deref_trait v1.2.0
Fresh untrusted v0.7.1
Fresh new_debug_unreachable v1.0.4
Fresh base64 v0.11.0
Fresh if_chain v1.0.0
Fresh spin v0.5.2
Fresh precomputed-hash v0.1.1
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:138:21
|
138 | let major = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:147:21
|
147 | let minor = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/build.rs:156:21
|
156 | let patch = try!(num.parse::<u32>().map_err(|e| e.to_string()));
| ^^^
warning: 3 warnings emitted
Fresh autocfg v0.1.7
Fresh rand_core v0.4.2
Fresh base64 v0.12.3
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:95:23
|
95 | cause: Option<Box<stdError + Send + Sync>>,
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:120:27
|
120 | where E: Into<Box<stdError + Send + Sync>>
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:137:48
|
137 | pub fn take_cause(&mut self) -> Option<Box<stdError + Send + Sync>> {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn stdError + Send + Sync`
Fresh smallvec v1.4.2
Fresh try-lock v0.2.3
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:160:32
|
160 | fn cause(&self) -> Option<&stdError> {
| ^^^^^^^^ help: use `dyn`: `dyn stdError`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/error.rs:161:52
|
161 | self.cause.as_ref().map(|e| e.as_ref() as &stdError)
| ^^^^^^^^ help: use `dyn`: `dyn stdError`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs:422:24
|
422 | impl std::io::Read for RngCore {
| ^^^^^^^ help: use `dyn`: `dyn RngCore`
warning: 6 warnings emitted
Fresh mime v0.3.16
Fresh tower-service v0.3.0
Fresh cargo_gn v0.0.15
Fresh dtoa v0.4.6
Fresh arrayvec v0.5.1
Fresh static_assertions v1.1.0
Fresh alloc-no-stdlib v2.0.1
Fresh byte-tools v0.3.1
Fresh adler v0.2.3
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:66:17
|
66 | / core::mem::replace(&mut self.system_resources.slice_mut()[index],
67 | | farthest_free_list);
| |_______________________________________________________^
|
= note: `#[warn(unused_must_use)]` on by default
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:74:13
|
74 | core::mem::replace(&mut self.system_resources.slice_mut()[index], return_to_sender);
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:85:13
|
85 | / core::mem::replace(&mut self.system_resources.slice_mut()[self.free_list_start],
86 | | val.mem);
| |________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: unused return value of `core::mem::replace` that must be used
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/alloc-no-stdlib-2.0.1/src/stack_allocator.rs:93:20
|
93 | / core::mem::replace(&mut self.system_resources.slice_mut()[self.free_list_overflow_count],
94 | | val.mem);
| |_______________________________________________^
|
= note: if you don't need the old value, you can just assign the new value directly
warning: 4 warnings emitted
Fresh quick-error v1.2.3
Fresh opaque-debug v0.3.0
Fresh safemem v0.3.3
Fresh unicode-xid v0.1.0
Fresh utf-8 v0.7.5
Fresh remove_dir_all v0.5.3
Fresh retain_mut v0.1.1
Fresh opaque-debug v0.2.3
Fresh fake-simd v0.1.2
Fresh ipnet v2.3.0
Fresh urlencoding v1.1.1
Fresh lazycell v1.3.0
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/ipnet.rs:116:28
|
116 | fmt.write_str(self.description())
| ^^^^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
warning: use of deprecated associated function `std::error::Error::description`: use the Display impl or to_string()
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ipnet-2.3.0/src/parser.rs:341:28
|
341 | fmt.write_str(self.description())
| ^^^^^^^^^^^
warning: 2 warnings emitted
Fresh same-file v1.0.6
Fresh termcolor v1.1.0
Fresh ansi_term v0.11.0
Fresh utf8parse v0.2.0
Fresh strsim v0.8.0
Fresh unicode-segmentation v1.6.0
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:171:21
|
171 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:183:29
|
183 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:187:29
|
187 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/ansi.rs:200:21
|
200 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:184:21
|
184 | let w: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:193:21
|
193 | let w: &mut io::Write = w;
| ^^^^^^^^^ help: use `dyn`: `dyn io::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:212:21
|
212 | let f: &mut fmt::Write = f;
| ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/display.rs:222:21
|
222 | let w: &mut io::Write = w;
| ^^^^^^^^^ help: use `dyn`: `dyn io::Write`
warning: associated type `wstr` should have an upper camel case name
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:6:10
|
6 | type wstr: ?Sized;
| ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `Wstr`
|
= note: `#[warn(non_camel_case_types)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:15:23
|
15 | impl<'a> AnyWrite for fmt::Write + 'a {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write + 'a`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/write.rs:29:23
|
29 | impl<'a> AnyWrite for io::Write + 'a {
| ^^^^^^^^^^^^^^ help: use `dyn`: `dyn io::Write + 'a`
warning: 11 warnings emitted
Fresh vec_map v0.8.2
Fresh anymap v0.12.1
Fresh jsonc-parser v0.14.0
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:33:17
|
33 | 'a' ... 'z' | 'A' ... 'Z' => true,
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:33:31
|
33 | 'a' ... 'z' | 'A' ... 'Z' => true,
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.6.0/src/tables.rs:42:17
|
42 | '0' ... '9' => true,
| ^^^ help: use `..=` for an inclusive range
warning: 3 warnings emitted
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1010:34
|
1010 | fn next(&mut self) -> Option<(&'a V)> { self.iter.next().map(|e| e.1) }
| ^^^^^^^ help: remove these parentheses
|
= note: `#[warn(unused_parens)]` on by default
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1017:39
|
1017 | fn next_back(&mut self) -> Option<(&'a V)> { self.iter.next_back().map(|e| e.1) }
| ^^^^^^^ help: remove these parentheses
warning: unnecessary parentheses around type
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.2/src/lib.rs:1023:34
|
1023 | fn next(&mut self) -> Option<(&'a mut V)> { self.iter_mut.next().map(|e| e.1) }
| ^^^^^^^^^^^ help: remove these parentheses
warning: 3 warnings emitted
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:54:9
|
54 | /// A type to emulate dynamic typing with cloning.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= note: `#[warn(unused_doc_comments)]` on by default
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
Fresh semver-parser v0.9.0
Fresh dissimilar v1.0.2
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:55:9
|
55 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:56:9
|
56 | /// Every type with no non-`'static` references that implements `Clone` implements `Any`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:60:9
|
60 | /// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:61:9
|
61 | /// more details on `Any` in general.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:62:9
|
62 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:156:9
|
156 | try!(write!(f, "{}.{}.{}", self.major, self.minor, self.patch));
| ^^^
|
= note: `#[warn(deprecated)]` on by default
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:63:9
|
63 | /// This trait is not `std::any::Any` but rather a type extending that for this library’s
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:159:13
|
159 | try!(write!(f, "-{}", strs.join(".")));
| ^^^
warning: use of deprecated macro `try`: use the `?` operator instead
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/version.rs:163:13
|
163 | try!(write!(f, "+{}", strs.join(".")));
| ^^^
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:47
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
|
= note: `#[warn(ellipsis_inclusive_range_patterns)]` on by default
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:59
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:64:9
|
64 | /// purposes so that it can be combined with marker traits like
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:181:71
|
181 | let end = scan_while!(self, start, '0'...'9' | 'A'...'Z' | 'a'...'z');
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:24
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:36
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: `...` range patterns are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/semver-parser-0.9.0/src/lexer.rs:245:48
|
245 | '0'...'9' | 'a'...'z' | 'A'...'Z' => {
| ^^^ help: use `..=` for an inclusive range
warning: 9 warnings emitted
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:65:9
|
65 | /// <code><a class=trait title=core::marker::Send
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:66:9
|
66 | /// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:67:9
|
67 | /// <code><a class=trait title=core::marker::Sync
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:68:9
|
68 | /// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:69:9
|
69 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
144 | define!(Any);
| ------------- in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:48:9
|
48 | /// A type to emulate dynamic typing.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:49:9
|
49 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:50:9
|
50 | /// Every type with no non-`'static` references implements `Any`.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:60:9
|
60 | /// See the [`std::any` documentation](https://doc.rust-lang.org/std/any/index.html) for
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:61:9
|
61 | /// more details on `Any` in general.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:62:9
|
62 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:63:9
|
63 | /// This trait is not `std::any::Any` but rather a type extending that for this library’s
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:64:9
|
64 | /// purposes so that it can be combined with marker traits like
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:65:9
|
65 | /// <code><a class=trait title=core::marker::Send
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:66:9
|
66 | /// href=http://doc.rust-lang.org/std/marker/trait.Send.html>Send</a></code> and
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:67:9
|
67 | /// <code><a class=trait title=core::marker::Sync
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:68:9
|
68 | /// href=http://doc.rust-lang.org/std/marker/trait.Sync.html>Sync</a></code>.
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: unused doc comment
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:69:9
|
69 | ///
| ^^^ rustdoc does not generate documentation for macro invocations
...
154 | define!(CloneAny);
| ------------------ in this macro invocation
|
= help: to document an item produced by a macro, the macro must produce the documentation as part of its expansion
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:12:35
|
12 | fn clone_to_any(&self) -> Box<CloneAny>;
| ^^^^^^^^ help: use `dyn`: `dyn CloneAny`
|
= note: `#[warn(bare_trait_objects)]` on by default
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:15:40
|
15 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send;
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:18:40
|
18 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync;
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:21:45
|
21 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync;
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:26:35
|
26 | fn clone_to_any(&self) -> Box<CloneAny> {
| ^^^^^^^^ help: use `dyn`: `dyn CloneAny`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:31:40
|
31 | fn clone_to_any_send(&self) -> Box<CloneAny + Send> where Self: Send {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:36:40
|
36 | fn clone_to_any_sync(&self) -> Box<CloneAny + Sync> where Self: Sync {
| ^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:41:45
|
41 | fn clone_to_any_send_sync(&self) -> Box<CloneAny + Send + Sync> where Self: Send + Sync {
| ^^^^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn CloneAny + Send + Sync`
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^ help: use `dyn`: `dyn $base`
...
145 | implement!(Any,);
| ----------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
146 | implement!(Any, + Send);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
147 | implement!(Any, + Sync);
| ------------------------ in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:135:46
|
135 | impl<T: $base $(+ $bounds)*> IntoBox<$base $(+ $bounds)*> for T {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
Fresh thread_local v1.0.1
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:137:38
|
137 | fn into_box(self) -> Box<$base $(+ $bounds)*> {
| ^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn $base $(+ $bounds`
...
148 | implement!(Any, + Send + Sync);
| ------------------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:111:29
|
111 | impl fmt::Debug for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
149 | implement!(CloneAny,);
| ---------------------- in this macro invocation
|
= note: this warning originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
warning: trait objects without an explicit `dyn` are deprecated
--> /home/pi/.cargo/registry/src/github.com-1ecc6299db9ec823/anymap-0.12.1/src/any.rs:118:34
|
118 | impl UncheckedAnyExt for $base $(+ $bounds)* {
| ^^^^^ help: use `dyn`: `dyn $base`
...
1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment