Skip to content

Cargo does "updating crates.io index" on every build when build-std is involved #9390

Closed
@lf-

Description

@lf-

Problem
My project is getting an "updating crates.io" index on every build, even no-op ones, which is mildly annoying as it slows down builds and is unkind to the GitHub API.

Steps

  1. cargo +nightly new v
  2. Create .cargo/config.toml and src/main.rs as follows:
jade@ubuntu-vm:~/v$ cat .cargo/config.toml
[build]
target = "riscv64imac-unknown-none-elf"

[unstable]
build-std = ["core","compiler_builtins"]
build-std-features = ["compiler-builtins-mem"]

jade@ubuntu-vm:~/v$ cat src/main.rs
#![no_std]
#![no_main]

#[panic_handler]
fn on_panic(_: &core::panic::PanicInfo) -> ! {
    loop {}
}
  1. cargo +nightly build --release
  2. Do that again, observe it grabbed the crates.io index again, even though nothing changed:
jade@ubuntu-vm:~/v$ cargo clean
jade@ubuntu-vm:~/v$ cargo b --release
    Updating crates.io index
   Compiling compiler_builtins v0.1.39
   Compiling core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
   Compiling rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
   Compiling v v0.1.0 (/home/jade/v)
    Finished release [optimized] target(s) in 7.29s
jade@ubuntu-vm:~/v$ cargo b --release
    Updating crates.io index
    Finished release [optimized] target(s) in 0.41s

Possible Solution(s)

Notes

`CARGO_LOG=debug` output

[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_root - trying /home/jade/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_root - trying /home/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_root - trying /Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - only me as a member
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] adding rustup info to rustc fingerprint
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] reusing existing rustc info cache
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z DEBUG cargo::util::config::target] Got all targets {}
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] avoid_patch_ids={}
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer v v0.1.0 (/home/jade/v)
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/v
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/v
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/v
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver] initial activation: v v0.1.0 (/home/jade/v)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] avoid_patch_ids={}
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer v v0.1.0 (/home/jade/v)
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/v
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver] initial activation: v v0.1.0 (/home/jade/v)
[2021-04-22T04:22:10Z DEBUG cargo::core::package] v v0.1.0 (/home/jade/v) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::workspace] find_members - /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/Cargo.toml
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing bootstrap v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing build-manifest v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing build_helper v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo v0.54.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-credential v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-credential-1password v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-credential-macos-keychain v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-credential-wincred v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-miri v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-platform v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-test-macro v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-test-support v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargo-util v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing cargotest2 v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing clippy v0.1.53
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing clippy-mini-macro-test v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing clippy_lints v0.1.53
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing clippy_utils v0.1.53
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing compiletest v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing coverage_test_macros v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing crates-io v0.33.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing error_index_generator v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing expand-yaml-anchors v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing installer v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing jsondocck v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing linkchecker v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing lint-docs v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing miri v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing remote-test-client v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing remote-test-server v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rls v1.41.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rls-ipc v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rls-rustc v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rust-demangler v0.0.1
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustbook v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc-main v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc-workspace-hack v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_apfloat v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_arena v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_ast v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_ast_lowering v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_ast_passes v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_ast_pretty v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_attr v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_builtin_macros v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_codegen_llvm v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_codegen_ssa v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_data_structures v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_driver v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_error_codes v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_errors v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_expand v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_feature v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_fs_util v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_graphviz v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_hir v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_hir_pretty v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_incremental v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_index v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_infer v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_interface v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_lexer v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_lint v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_lint_defs v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_llvm v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_macros v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_metadata v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_middle v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_mir v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_mir_build v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_parse v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_parse_format v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_passes v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_plugin_impl v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_privacy v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_query_impl v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_query_system v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_resolve v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_save_analysis v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_serialize v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_session v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_span v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_symbol_mangling v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_target v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_tools_util v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_trait_selection v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_traits v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_ty_utils v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_type_ir v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustc_typeck v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustdoc v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustdoc-json-types v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustdoc-themes v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustdoc-tool v0.0.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustfmt-config_proc_macro v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing rustfmt-nightly v1.4.37
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing tidy v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing tier-check v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing unicode-bdd v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::encode] path dependency now missing unstable-book-gen v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] registering a patch for `https://github.com/rust-lang/crates.io-index` with `rustc-std-workspace-core`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] patch summary is Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-core", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" }, dependencies: [Dependency { inner: Inner { name: "core", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } } should_unlock=None
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] registering a patch for `https://github.com/rust-lang/crates.io-index` with `rustc-std-workspace-alloc`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] patch summary is Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-alloc", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc" }, dependencies: [Dependency { inner: Inner { name: "alloc", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } } should_unlock=None
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] registering a patch for `https://github.com/rust-lang/crates.io-index` with `rustc-std-workspace-std`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] patch summary is Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-std", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std" }, dependencies: [Dependency { inner: Inner { name: "std", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } } should_unlock=None
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] avoid_patch_ids={}
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] poisoning registry `https://github.com/rust-lang/crates.io-index` because std_detect v0.1.5 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect) looks like it changed auxv
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at addr2line v0.14.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at compiler_builtins v0.1.39
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cc v1.0.60
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jobserver v0.1.21
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libc v0.2.93
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at getrandom v0.1.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cfg-if v0.1.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at wasi v0.9.0+wasi-snapshot-preview1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-std-workspace-alloc v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_xorshift v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_core v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_chacha v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ppv-lite86 v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_hc v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_pcg v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at gimli v0.23.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at adler v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at aho-corasick v0.7.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at memchr v2.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ammonia v3.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at html5ever v0.25.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at log v0.4.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at mac v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at markup5ever v0.10.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at phf v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at phf_shared v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at siphasher v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at phf_codegen v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at phf_generator v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at serde v1.0.125
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at serde_derive v1.0.125
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro2 v1.0.24
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-xid v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at quote v1.0.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at syn v1.0.65
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at serde_json v1.0.59
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at indexmap v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at autocfg v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at hashbrown v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at itoa v0.4.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ryu v1.0.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at string_cache v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lazy_static v1.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at new_debug_unreachable v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at precomputed-hash v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at string_cache_codegen v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tendril v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futf v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at utf-8 v0.7.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at maplit v1.0.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at markup5ever_rcdom v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at xml5ever v0.16.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at time v0.1.43
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi v0.3.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi-i686-pc-windows-gnu v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi-x86_64-pc-windows-gnu v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at matches v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at url v2.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at idna v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-bidi v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-normalization v0.1.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tinyvec v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at percent-encoding v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at annotate-snippets v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ansi_term v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at annotate-snippets v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ansi_term v0.12.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at anyhow v1.0.34
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at array_tool v1.0.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at arrayref v0.3.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at arrayvec v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at atty v0.2.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at hermit-abi v0.1.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at base64 v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bitflags v1.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bitmaps v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at typenum v1.12.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at blake2b_simd v0.5.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at constant_time_eq v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at block-buffer v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at block-padding v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at byte-tools v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at byteorder v1.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at generic-array v0.12.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at block-buffer v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at generic-array v0.14.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at version_check v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bstr v0.2.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bytecount v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at packed_simd_2 v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libm v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bytes v0.5.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at bytesize v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cargo_metadata v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at semver v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at semver-parser v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cargo_metadata v0.11.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at semver v0.10.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cargo_metadata v0.12.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at semver v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at semver-parser v0.10.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pest v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ucd-trie v0.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cfg-if v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at chalk-derive v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at synstructure v0.12.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at chalk-engine v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at chalk-ir v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at chalk-solve v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ena v0.14.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at itertools v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at either v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at petgraph v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fixedbitset v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-hash v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing v0.1.25
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pin-project-lite v0.2.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-attributes v0.1.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-core v0.1.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-subscriber v0.2.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at chrono v0.4.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at num-integer v0.1.43
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at num-traits v0.2.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at matchers v0.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at regex-automata v0.1.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at regex-syntax v0.6.22
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at parking_lot v0.11.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at instant v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lock_api v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at scopeguard v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at parking_lot_core v0.8.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at redox_syscall v0.2.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at smallvec v1.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at regex v1.4.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at thread_local v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at sharded-slab v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-log v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-serde v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tracing-tree v0.1.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at termcolor v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi-util v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at clap v2.33.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at strsim v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at textwrap v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-width v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-std-workspace-std v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at dlmalloc v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fortanix-sgx-abi v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at hashbrown v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at miniz_oxide v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at object v0.22.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at panic_abort v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at panic_unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at profiler_builtins v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-demangle v0.1.18
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at std_detect v0.1.5 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at vec_map v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at yaml-rust v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cmake v0.1.44
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at colored v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at commoncrypto v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at commoncrypto-sys v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at compiletest_rs v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at diff v0.1.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at filetime v0.2.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at redox_syscall v0.1.57
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at getopts v0.2.21
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at miow v0.3.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at socket2 v0.3.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustfix v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tempfile v3.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at remove_dir_all v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tester v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at num_cpus v1.13.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at term v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at dirs-next v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at dirs-sys-next v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at redox_users v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at getrandom v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustversion v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at const_fn v0.4.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at core-foundation v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at core-foundation-sys v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cpuid-bool v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crc32fast v1.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-channel v0.5.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-utils v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-deque v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-epoch v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-utils v0.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at maybe-uninit v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at memoffset v0.5.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crossbeam-queue v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at crypto-hash v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at hex v0.3.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at openssl v0.10.30
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at foreign-types v0.3.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at foreign-types-shared v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at openssl-sys v0.9.58
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at openssl-src v111.12.0+1.1.1h
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pkg-config v0.3.18
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at vcpkg v0.2.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at cstr v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ctor v0.1.15
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at curl v0.4.34
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at curl-sys v0.4.39+curl-7.74.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libnghttp2-sys v0.1.4+1.41.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libz-sys v1.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at openssl-probe v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at schannel v0.1.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at datafrog v2.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at derive-new v0.5.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at derive_more v0.99.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at difference v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at digest v0.8.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at digest v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at directories v3.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at dirs-sys v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at redox_users v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rust-argon2 v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at dirs v2.0.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at elasticlunr-rs v2.3.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at strum v0.18.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at strum_macros v0.18.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at heck v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-segmentation v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at enum-iterator v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at enum-iterator-derive v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at env_logger v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at humantime v1.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at quick-error v1.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at env_logger v0.7.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at env_logger v0.8.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at humantime v2.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at expect-test v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at once_cell v1.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fake-simd v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at flate2 v1.0.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fnv v1.0.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fs-err v2.5.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fs_extra v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fst v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fuchsia-zircon v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fuchsia-zircon-sys v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures v0.1.29
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-channel v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-core v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-sink v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-executor v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-task v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-util v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-io v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at futures-macro v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro-hack v0.5.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pin-utils v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro-nested v0.1.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at slab v0.4.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at fwdansi v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at getset v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro-error v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro-error-attr v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at git2 v0.13.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libgit2-sys v0.12.18+1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at libssh2-sys v0.2.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at git2-curl v0.14.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at glob v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at globset v0.4.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at gsgdt v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at handlebars v3.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pest_derive v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pest_generator v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pest_meta v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at sha-1 v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at opaque-debug v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at quick-error v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at hex v0.4.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at home v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at idna v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at if_chain v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ignore v0.4.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at same-file v1.0.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at walkdir v2.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at im-rc v15.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_xoshiro v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at sized-chunks v0.6.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at iovec v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at itertools v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at json v0.11.15
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonpath_lib v0.2.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-client-transports v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-core v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-pubsub v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-server-utils v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tokio v0.2.24
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at mio v0.6.22
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at kernel32-sys v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at winapi-build v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at miow v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at net2 v0.2.36
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ws2_32-sys v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at mio-named-pipes v0.1.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at mio-uds v0.6.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pin-project-lite v0.1.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at signal-hook-registry v1.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tokio-macros v0.2.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tokio-util v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicase v2.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at parity-tokio-ipc v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at url v1.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at percent-encoding v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-core-client v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-derive v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at proc-macro-crate v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at toml v0.5.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at jsonrpc-ipc-server v17.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tower-service v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lazycell v1.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at linked-hash-map v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lsp-codec v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lsp-types v0.60.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at serde_repr v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at lzma-sys v0.1.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at macro-utils v0.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at md-5 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at opaque-debug v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at mdbook v0.4.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at open v1.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pulldown-cmark v0.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at shlex v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at measureme v9.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at memmap v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at perf-event-open-sys v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at memmap2 v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at merge v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at merge_derive v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at minifier v0.0.39
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at opener v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ordslice v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at output_vt100 v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pathdiff v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at polonius-engine v0.12.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pretty_assertions v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pretty_env_logger v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at psm v0.1.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at pulldown-cmark v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at punycode v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at quine-mc_cluskey v0.2.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at racer v2.1.45
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rls-span v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_ast v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_data_structures v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_graphviz v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_index v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_macros v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_serialize v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-rayon v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-rayon-core v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at stable_deref_trait v1.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at stacker v0.1.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_lexer v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_span v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_arena v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at scoped-tls v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at sha-1 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at sha2 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_ast_pretty v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_errors v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_lint_defs v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_target v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at termize v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_parse v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_feature v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_session v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_fs_util v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand v0.8.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_chacha v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_core v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rand_hc v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rayon v1.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rayon-core v1.7.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rls-analysis v0.18.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rls-data v0.19.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rls-vfs v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_ast_passes v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_attr v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-ap-rustc_expand v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc-semver v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc_tools_util v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at rustc_version v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at security-framework v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at security-framework-sys v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at serde_ignored v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at shell-escape v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at shlex v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at smallvec v0.6.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at snap v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at strip-ansi-escapes v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at vte v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at utf8parse v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at structopt v0.3.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at structopt-derive v0.4.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tar v0.4.29
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at xattr v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at term v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at thiserror v1.0.20
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at thiserror-impl v1.0.20
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tikv-jemalloc-sys v0.4.1+5.2.1-patched
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at tikv-jemallocator v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at ucd-parse v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-script v0.5.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode-security v0.0.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unicode_categories v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at unified-diff v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at vergen v5.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at xz2 v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at yaml-merge-keys v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] ignoring any lock pointing directly at yaml-rust v0.4.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] poisoning registry `https://github.com/rust-lang/crates.io-index` because std_detect v0.1.5 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect) looks like it changed cupid
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer addr2line v0.14.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer adler v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer aho-corasick v0.7.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ammonia v3.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer annotate-snippets v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer annotate-snippets v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ansi_term v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ansi_term v0.12.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer anyhow v1.0.34
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer array_tool v1.0.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer arrayref v0.3.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer arrayvec v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer atty v0.2.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer autocfg v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer base64 v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bitflags v1.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bitmaps v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer blake2b_simd v0.5.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer block-buffer v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer block-buffer v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer block-padding v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bstr v0.2.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer byte-tools v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bytecount v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer byteorder v1.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bytes v0.5.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer bytesize v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cargo_metadata v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cargo_metadata v0.11.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cargo_metadata v0.12.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cc v1.0.60
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cfg-if v0.1.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cfg-if v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer chalk-derive v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer chalk-engine v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer chalk-ir v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer chalk-solve v0.55.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer chrono v0.4.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer clap v2.33.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cmake v0.1.44
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer colored v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer commoncrypto v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer commoncrypto-sys v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer compiler_builtins v0.1.39
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer compiletest_rs v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer const_fn v0.4.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer constant_time_eq v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer core-foundation v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer core-foundation-sys v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cpuid-bool v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crc32fast v1.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-channel v0.5.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-deque v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-epoch v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-queue v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-utils v0.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crossbeam-utils v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer crypto-hash v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer cstr v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ctor v0.1.15
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer curl v0.4.34
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer curl-sys v0.4.39+curl-7.74.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer datafrog v2.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer derive-new v0.5.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer derive_more v0.99.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer diff v0.1.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer difference v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer digest v0.8.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer digest v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer directories v3.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer dirs v2.0.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer dirs-next v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer dirs-sys v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer dirs-sys-next v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer dlmalloc v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer either v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer elasticlunr-rs v2.3.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ena v0.14.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer enum-iterator v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer enum-iterator-derive v0.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer env_logger v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer env_logger v0.7.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer env_logger v0.8.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer expect-test v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fake-simd v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer filetime v0.2.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fixedbitset v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer flate2 v1.0.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fnv v1.0.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer foreign-types v0.3.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer foreign-types-shared v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fortanix-sgx-abi v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fs-err v2.5.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fs_extra v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fst v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fuchsia-zircon v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fuchsia-zircon-sys v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futf v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures v0.1.29
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-channel v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-core v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-executor v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-io v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-macro v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-sink v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-task v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer futures-util v0.3.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer fwdansi v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer generic-array v0.12.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer generic-array v0.14.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer getopts v0.2.21
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer getrandom v0.1.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer getrandom v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer getset v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer gimli v0.23.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer git2 v0.13.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer git2-curl v0.14.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer glob v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer globset v0.4.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer gsgdt v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer handlebars v3.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer hashbrown v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer hashbrown v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer heck v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer hermit-abi v0.1.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer hex v0.3.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer hex v0.4.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer home v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer html5ever v0.25.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer humantime v1.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer humantime v2.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer idna v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer idna v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer if_chain v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ignore v0.4.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer im-rc v15.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer indexmap v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer instant v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer iovec v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer itertools v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer itertools v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer itoa v0.4.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jobserver v0.1.21
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer json v0.11.15
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonpath_lib v0.2.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-client-transports v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-core v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-core-client v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-derive v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-ipc-server v17.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-pubsub v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer jsonrpc-server-utils v17.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer kernel32-sys v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lazy_static v1.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lazycell v1.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libc v0.2.93
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libgit2-sys v0.12.18+1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libm v0.1.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libnghttp2-sys v0.1.4+1.41.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libssh2-sys v0.2.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer libz-sys v1.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer linked-hash-map v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lock_api v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer log v0.4.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lsp-codec v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lsp-types v0.60.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer lzma-sys v0.1.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer mac v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer macro-utils v0.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer maplit v1.0.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer markup5ever v0.10.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer markup5ever_rcdom v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer matchers v0.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer matches v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer maybe-uninit v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer md-5 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer mdbook v0.4.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer measureme v9.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer memchr v2.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer memmap v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer memmap2 v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer memoffset v0.5.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer merge v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer merge_derive v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer minifier v0.0.39
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer miniz_oxide v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer mio v0.6.22
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer mio-named-pipes v0.1.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer mio-uds v0.6.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer miow v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer miow v0.3.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer net2 v0.2.36
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer new_debug_unreachable v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer num-integer v0.1.43
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer num-traits v0.2.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer num_cpus v1.13.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer object v0.22.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer once_cell v1.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer opaque-debug v0.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer opaque-debug v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer open v1.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer opener v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer openssl v0.10.30
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer openssl-probe v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer openssl-src v111.12.0+1.1.1h
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer openssl-sys v0.9.58
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ordslice v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer output_vt100 v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer packed_simd_2 v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer panic_abort v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer panic_unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer parity-tokio-ipc v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer parking_lot v0.11.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer parking_lot_core v0.8.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pathdiff v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer percent-encoding v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer percent-encoding v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer perf-event-open-sys v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pest v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pest_derive v2.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pest_generator v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pest_meta v2.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer petgraph v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer phf v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer phf_codegen v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer phf_generator v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer phf_shared v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pin-project-lite v0.1.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pin-project-lite v0.2.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pin-utils v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pkg-config v0.3.18
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer polonius-engine v0.12.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ppv-lite86 v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer precomputed-hash v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pretty_assertions v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pretty_env_logger v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro-crate v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro-error v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro-error-attr v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro-hack v0.5.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro-nested v0.1.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc-macro2 v1.0.24
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer proc_macro v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer profiler_builtins v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer psm v0.1.11
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pulldown-cmark v0.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer pulldown-cmark v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer punycode v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer quick-error v1.2.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer quick-error v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer quine-mc_cluskey v0.2.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer quote v1.0.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer racer v2.1.45
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand v0.7.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand v0.8.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_chacha v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_chacha v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_core v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_core v0.6.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_hc v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_hc v0.3.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_pcg v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_xorshift v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rand_xoshiro v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rayon v1.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rayon-core v1.7.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer redox_syscall v0.1.57
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer redox_syscall v0.2.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer redox_users v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer redox_users v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer regex v1.4.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer regex-automata v0.1.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer regex-syntax v0.6.22
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer remove_dir_all v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rls-analysis v0.18.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rls-data v0.19.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rls-span v0.5.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rls-vfs v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rust-argon2 v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_arena v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_ast v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_ast_passes v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_ast_pretty v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_attr v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_data_structures v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_errors v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_expand v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_feature v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_fs_util v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_graphviz v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_index v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_lexer v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_lint_defs v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_macros v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_parse v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_serialize v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_session v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_span v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-ap-rustc_target v712.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-demangle v0.1.18
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-hash v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-rayon v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-rayon-core v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-semver v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-std-workspace-alloc v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc-std-workspace-std v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc_tools_util v0.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustc_version v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustfix v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer rustversion v1.0.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ryu v1.0.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer same-file v1.0.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer schannel v0.1.19
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer scoped-tls v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer scopeguard v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer security-framework v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer security-framework-sys v2.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer semver v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer semver v0.10.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer semver v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer semver-parser v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer semver-parser v0.10.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer serde v1.0.125
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer serde_derive v1.0.125
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer serde_ignored v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer serde_json v1.0.59
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer serde_repr v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer sha-1 v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer sha-1 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer sha2 v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer sharded-slab v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer shell-escape v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer shlex v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer shlex v1.0.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer signal-hook-registry v1.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer siphasher v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer sized-chunks v0.6.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer slab v0.4.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer smallvec v0.6.14
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer smallvec v1.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer snap v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer socket2 v0.3.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer stable_deref_trait v1.2.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer stacker v0.1.12
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer std_detect v0.1.5 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer string_cache v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer string_cache_codegen v0.5.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer strip-ansi-escapes v0.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer strsim v0.8.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer structopt v0.3.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer structopt-derive v0.4.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer strum v0.18.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer strum_macros v0.18.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer syn v1.0.65
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer synstructure v0.12.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tar v0.4.29
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tempfile v3.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tendril v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer term v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer term v0.6.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer term v0.7.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer termcolor v1.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer termize v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer test v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tester v0.9.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer textwrap v0.11.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer thiserror v1.0.20
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer thiserror-impl v1.0.20
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer thread_local v1.0.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tikv-jemalloc-sys v0.4.1+5.2.1-patched
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tikv-jemallocator v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer time v0.1.43
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tinyvec v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tokio v0.2.24
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tokio-macros v0.2.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tokio-util v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer toml v0.5.7
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tower-service v0.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing v0.1.25
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-attributes v0.1.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-core v0.1.17
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-log v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-serde v0.1.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-subscriber v0.2.16
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer tracing-tree v0.1.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer typenum v1.12.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ucd-parse v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ucd-trie v0.1.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicase v2.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-bidi v0.3.4
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-normalization v0.1.13
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-script v0.5.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-security v0.0.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-segmentation v1.6.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-width v0.1.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode-xid v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unicode_categories v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unified-diff v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind)
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer url v1.7.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer url v2.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer utf-8 v0.7.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer utf8parse v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer vcpkg v0.2.10
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer vec_map v0.8.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer vergen v5.1.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer version_check v0.9.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer vte v0.3.3
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer walkdir v2.3.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer wasi v0.9.0+wasi-snapshot-preview1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi v0.2.8
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi v0.3.9
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi-build v0.1.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi-i686-pc-windows-gnu v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi-util v0.1.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer winapi-x86_64-pc-windows-gnu v0.4.0
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer ws2_32-sys v0.2.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer xattr v0.2.2
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer xml5ever v0.16.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer xz2 v0.1.6
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer yaml-merge-keys v0.4.1
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer yaml-rust v0.3.5
[2021-04-22T04:22:10Z DEBUG cargo::ops::resolve] attempting to prefer yaml-rust v0.4.4
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] locking patch Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-core", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" }, dependencies: [Dependency { inner: Inner { name: "core", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } }
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] locking patch Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-alloc", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc" }, dependencies: [Dependency { inner: Inner { name: "alloc", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } }
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] locking patch Summary { inner: Inner { package_id: PackageId { name: "rustc-std-workspace-std", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std" }, dependencies: [Dependency { inner: Inner { name: "std", source_id: SourceId { inner: SourceIdInner { url: "file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std", canonical_url: CanonicalUrl("file:///home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std"), kind: Path, precise: None, name: None } }, registry_id: None, req: VersionReq { predicates: [] }, specified_req: false, kind: Normal, only_match_name: false, explicit_name_in_toml: None, optional: false, public: false, default_features: true, features: [], platform: None } }], features: {}, has_namespaced_features: false, has_overlapping_features: None, checksum: None, links: None } }
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/profiler_builtins
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver] initial activation: core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core)
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver] initial activation: test v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test)
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/missing  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] loading source registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::config] loading: registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::remote] updating the index
    Updating crates.io index
[2021-04-22T04:22:10Z DEBUG cargo::sources::git::utils] attempting GitHub fast path for https://api.github.com/repos/rust-lang/crates.io-index/commits/HEAD
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "cf/g-/cfg-if"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ge/to/getopts"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "li/bc/libc"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-core` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ru/st/rustc-std-workspace-core"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-std` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ru/st/rustc-std-workspace-std"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "un/ic/unicode-width"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "co/mp/compiler_builtins"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ha/sh/hashbrown"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ru/st/rustc-demangle"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/locked   /home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "he/rm/hermit-abi"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "dl/ma/dlmalloc"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "wa/si/wasi"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "fo/rt/fortanix-sgx-abi"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "2/cc"
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-core` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if panic_abort v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-core` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-alloc` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::sources::registry::index] fast path for registry cache of "ru/st/rustc-std-workspace-alloc"
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] found 1 patches with an unlocked dep on `rustc-std-workspace-alloc` at registry `https://github.com/rust-lang/crates.io-index` with `^1.0`, looking at sources
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::registry] load/precise  registry `https://github.com/rust-lang/crates.io-index`
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-alloc v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if cfg-if v0.1.10 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if cfg-if v0.1.10 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if cfg-if v0.1.10 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if cfg-if v0.1.10 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-alloc v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if cfg-if v0.1.10 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if rustc-std-workspace-std v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std) is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if compiler_builtins v0.1.39 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::resolver::context] checking if libc v0.2.93 is already activated
[2021-04-22T04:22:10Z DEBUG cargo::core::package] alloc v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/alloc) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] cc v1.0.60 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] cfg-if v0.1.10 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] compiler_builtins v0.1.39 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] core v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] getopts v0.2.21 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] hashbrown v0.11.0 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] libc v0.2.93 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] panic_abort v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_abort) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] panic_unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/panic_unwind) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] proc_macro v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/proc_macro) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] rustc-demangle v0.1.18 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] rustc-std-workspace-alloc v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-alloc) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] rustc-std-workspace-core v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] rustc-std-workspace-std v1.99.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-std) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] std v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] std_detect v0.1.5 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/stdarch/crates/std_detect) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] term v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/term) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] test v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/test) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] unicode-width v0.1.8 doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::core::package] unwind v0.0.0 (/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/unwind) doesn't need a download
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] adding rustup info to rustc fingerprint
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] reusing existing rustc info cache
[2021-04-22T04:22:10Z DEBUG cargo::util::rustc] rustc info cache hit
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::context::compilation_files] Target filenames: [OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcompiler_builtins-eca3feb0264959d9.rlib", hardlink: None, export_path: None, flavor: Linkable }, OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcompiler_builtins-eca3feb0264959d9.rmeta", hardlink: None, export_path: None, flavor: Rmeta }]
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::context::compilation_files] Target filenames: [OutputFile { path: "/home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build_script_build-fa56126b7addd10b", hardlink: Some("/home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build-script-build"), export_path: None, flavor: Normal }]
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::context::compilation_files] Target filenames: [OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcore-064adc34fb5aa5dc.rlib", hardlink: None, export_path: None, flavor: Linkable }, OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcore-064adc34fb5aa5dc.rmeta", hardlink: None, export_path: None, flavor: Rmeta }]
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::context::compilation_files] Target filenames: [OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/librustc_std_workspace_core-b4a2e0f20f0fc76b.rlib", hardlink: None, export_path: None, flavor: Linkable }, OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/librustc_std_workspace_core-b4a2e0f20f0fc76b.rmeta", hardlink: None, export_path: None, flavor: Rmeta }]
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::context::compilation_files] Target filenames: [OutputFile { path: "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/v-7b76f19ebc77d6b1", hardlink: Some("/home/jade/v/target/riscv64imac-unknown-none-elf/release/v"), export_path: None, flavor: Normal }]
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/v-7b76f19ebc77d6b1/bin-v
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] new local fingerprints deps "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build_script_build-fa56126b7addd10b" 1619065131.123439627s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/release/.fingerprint/compiler_builtins-fa56126b7addd10b/dep-build-script-build-script-build" mtime=1619065130.835434962s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/build/compiler_builtins-4cb0696be04cd696/output" 1619065131.127439691s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build_script_build-fa56126b7addd10b" 1619065131.123439627s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/riscv64imac-unknown-none-elf/release/build/compiler_builtins-4cb0696be04cd696/output" mtime=1619065131.127439691s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcore-064adc34fb5aa5dc.rlib" 1619065136.751527902s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/core-064adc34fb5aa5dc/dep-lib-core" mtime=1619065130.835434962s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/librustc_std_workspace_core-b4a2e0f20f0fc76b.rlib" 1619065135.983516183s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcore-064adc34fb5aa5dc.rmeta" 1619065135.859514271s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/rustc-std-workspace-core-b4a2e0f20f0fc76b/dep-lib-rustc-std-workspace-core" mtime=1619065135.871514456s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcompiler_builtins-eca3feb0264959d9.rlib" 1619065136.791528512s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/librustc_std_workspace_core-b4a2e0f20f0fc76b.rmeta" 1619065135.979516122s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/build/compiler_builtins-4cb0696be04cd696/output" 1619065131.127439691s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/compiler_builtins-eca3feb0264959d9/dep-lib-compiler_builtins" mtime=1619065135.979516122s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max output mtime for "/home/jade/v" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/v-7b76f19ebc77d6b1" 1619065136.887529976s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/v" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcore-064adc34fb5aa5dc.rlib" 1619065136.751527902s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] max dep mtime for "/home/jade/v" is "/home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/libcompiler_builtins-eca3feb0264959d9.rlib" 1619065136.791528512s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] all paths up-to-date relative to "/home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/v-7b76f19ebc77d6b1/dep-bin-v" mtime=1619065136.795528573s
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] filesystem up-to-date "/home/jade/v"
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/compiler_builtins-eca3feb0264959d9/lib-compiler_builtins
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/compiler_builtins-4cb0696be04cd696/run-build-script-build-script-build
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/release/.fingerprint/compiler_builtins-fa56126b7addd10b/build-script-build-script-build
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/rustc-std-workspace-core-b4a2e0f20f0fc76b/lib-rustc-std-workspace-core
[2021-04-22T04:22:10Z DEBUG cargo::core::compiler::fingerprint] fingerprint at: /home/jade/v/target/riscv64imac-unknown-none-elf/release/.fingerprint/core-064adc34fb5aa5dc/lib-core
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 0: Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { ..: custom_build_target("build-script-build", "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/build.rs", Edition2015) }, profile: Profile { opt_level: "0", ..: default_release() }, kind: Host, mode: Build, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }
[2021-04-22T04:22:10Z DEBUG cargo_util::paths] linking /home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build_script_build-fa56126b7addd10b to /home/jade/v/target/release/build/compiler_builtins-fa56126b7addd10b/build-script-build
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] tokens in use: 0, rustc_tokens: [], waiting_rustcs: [] (events this tick: 2)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(0)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { ..: custom_build_target("build-script-build", "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/build.rs", Edition2015) }, profile: Profile { opt_level: "0", ..: default_release() }, kind: Host, mode: Build, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 1: Unit { pkg: Package { id: PackageId { name: "core", version: "0.0.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core" }, ..: ".." }, target: TargetInner { tested: false, benched: false, ..: lib_target("core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 2: Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { ..: custom_build_target("build-script-build", "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/build.rs", Edition2015) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: RunCustomBuild, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] tokens in use: 1, rustc_tokens: [], waiting_rustcs: [] (events this tick: 4)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (meta): JobId(1)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "core", version: "0.0.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core" }, ..: ".." }, target: TargetInner { tested: false, benched: false, ..: lib_target("core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(1)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "core", version: "0.0.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core" }, ..: ".." }, target: TargetInner { tested: false, benched: false, ..: lib_target("core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(2)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { ..: custom_build_target("build-script-build", "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/build.rs", Edition2015) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: RunCustomBuild, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 3: Unit { pkg: Package { id: PackageId { name: "rustc-std-workspace-core", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" }, ..: ".." }, target: TargetInner { ..: lib_target("rustc-std-workspace-core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] tokens in use: 2, rustc_tokens: [], waiting_rustcs: [] (events this tick: 2)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (meta): JobId(3)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "rustc-std-workspace-core", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" }, ..: ".." }, target: TargetInner { ..: lib_target("rustc-std-workspace-core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(3)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "rustc-std-workspace-core", version: "1.99.0", source: "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core" }, ..: ".." }, target: TargetInner { ..: lib_target("rustc-std-workspace-core", ["lib"], "/home/jade/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/rustc-std-workspace-core/lib.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 4: Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { tested: false, ..: lib_target("compiler_builtins", ["lib"], "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/src/lib.rs", Edition2015) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] tokens in use: 2, rustc_tokens: [], waiting_rustcs: [] (events this tick: 1)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(4)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "compiler_builtins", version: "0.1.39", source: "registry `https://github.com/rust-lang/crates.io-index`" }, ..: ".." }, target: TargetInner { tested: false, ..: lib_target("compiler_builtins", ["lib"], "/home/jade/.cargo/registry/src/github.com-1ecc6299db9ec823/compiler_builtins-0.1.39/src/lib.rs", Edition2015) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: ["compiler-builtins", "core", "default", "mem", "rustc-dep-of-std"], is_std: true, dep_hash: 0 }): Ok(())
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] start 5: Unit { pkg: Package { id: PackageId { name: "v", version: "0.1.0", source: "/home/jade/v" }, ..: ".." }, target: TargetInner { name: "v", doc: true, ..: with_path("/home/jade/v/src/main.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: false, dep_hash: 0 }
[2021-04-22T04:22:10Z DEBUG cargo_util::paths] linking /home/jade/v/target/riscv64imac-unknown-none-elf/release/deps/v-7b76f19ebc77d6b1 to /home/jade/v/target/riscv64imac-unknown-none-elf/release/v
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] tokens in use: 2, rustc_tokens: [], waiting_rustcs: [] (events this tick: 1)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end: JobId(5)
[2021-04-22T04:22:10Z INFO  cargo::core::compiler::job_queue] end (Unit { pkg: Package { id: PackageId { name: "v", version: "0.1.0", source: "/home/jade/v" }, ..: ".." }, target: TargetInner { name: "v", doc: true, ..: with_path("/home/jade/v/src/main.rs", Edition2018) }, profile: Profile { ..: default_release() }, kind: Target(CompileTarget { name: "riscv64imac-unknown-none-elf" }), mode: Build, features: [], is_std: false, dep_hash: 0 }): Ok(())
    Finished release [optimized] target(s) in 0.41s

Output of cargo version:

$ cargo --version
cargo 1.53.0-nightly (65d57e6f3 2021-04-04)

Metadata

Metadata

Assignees

No one assigned

    Labels

    C-bugCategory: bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions