Skip to content

Update cargo submodule#159857

Open
weihanglo wants to merge 2 commits into
rust-lang:mainfrom
weihanglo:update-cargo
Open

Update cargo submodule#159857
weihanglo wants to merge 2 commits into
rust-lang:mainfrom
weihanglo:update-cargo

Conversation

@weihanglo

@weihanglo weihanglo commented Jul 24, 2026

Copy link
Copy Markdown
Member

View all comments

17 commits in 3efb1f477e99b42974b982d939fd100303cdf7db..54b61f13a4eea47ec3ee95237d4107976d7909ed
2026-07-17 23:53:19 +0000 to 2026-07-24 13:23:18 +0000

r? ghost

@weihanglo weihanglo self-assigned this Jul 24, 2026
@rustbot

rustbot commented Jul 24, 2026

Copy link
Copy Markdown
Collaborator

Some changes occurred in src/tools/cargo

cc @ehuss

@rustbot rustbot added the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 24, 2026
@rustbot

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@weihanglo

Copy link
Copy Markdown
Member Author

Need to update those rmake tests to reflect nightly build-dir layout changes.

@rustbot

rustbot commented Jul 24, 2026

Copy link
Copy Markdown
Collaborator

The run-make-support library was changed

cc @jieyouxu

@rustbot rustbot added A-run-make Area: port run-make Makefiles to rmake.rs T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. labels Jul 24, 2026
@rustbot

This comment has been minimized.

@rustbot

This comment has been minimized.

@weihanglo

weihanglo commented Jul 24, 2026

Copy link
Copy Markdown
Member Author

r? ranger-ross

Mind reviewing 86a4c65 is good?

@rustbot

rustbot commented Jul 25, 2026

Copy link
Copy Markdown
Collaborator

⚠️ Warning ⚠️

let file_name = path.file_name().unwrap().to_str().unwrap();
file_name.starts_with("libcompiler_builtins") && file_name.ends_with(".rlib")
});
assert_eq!(rlibs.len(), 1, "expected exactly one compiler_builtins rlib: {rlibs:?}");

@weihanglo weihanglo Jul 25, 2026

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

length assertion should guard us well to only get the one and only artifact.

View changes since the review

@weihanglo

Copy link
Copy Markdown
Member Author

Or @jieyouxu if you are willing to take a look at the rmake change? 🥺

@ranger-ross ranger-ross left a comment

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.unwrap();
// The rlib file is emitted as an intermediate build artifacts.
// Do not hardcode the path.
let mut rlibs = recursive_find_files(&target_dir, |path| {

@ranger-ross ranger-ross Jul 25, 2026

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we change this to target_dir.join("debug")?
If it's built in release mode we could end up finding the debug and release .rlibs and hit the assert below.
Not sure if that is applicable for run-make tests

View changes since the review

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good point. Updated.

@jieyouxu jieyouxu self-assigned this Jul 25, 2026
Cargo enables build-dir layout v2 by default on nightly
(rust-lang/cargo PR 17258).
Intermediate build artifacts no longer live in
`<target-dir>/<triple>/<profile>/deps/`
but in per-unit `build/<pkg>/<hash>/out/` directories.
@weihanglo

Copy link
Copy Markdown
Member Author

Okay. Going to merge this.

@bors r=ranger-ross p=1 rollup=never

If the remake test changes are bad, please call them out!

@rust-bors

rust-bors Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

📌 Commit 3e3b43c has been approved by ranger-ross

It is now in the queue for this repository.

@rust-bors rust-bors Bot added the S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. label Jul 25, 2026
@rust-bors rust-bors Bot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 25, 2026
@jieyouxu

Copy link
Copy Markdown
Member

If the remake test changes are bad, please call them out!

No they look fine, cheers

@jieyouxu jieyouxu removed their assignment Jul 25, 2026
@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Jul 25, 2026
Update cargo submodule

17 commits in 3efb1f477e99b42974b982d939fd100303cdf7db..54b61f13a4eea47ec3ee95237d4107976d7909ed
2026-07-17 23:53:19 +0000 to 2026-07-24 13:23:18 +0000
- chore: bump to `libgit2-sys@0.18.7+1.9.6` (rust-lang/cargo#17259)
- Enable build-dir layout v2 on nightly by default (rust-lang/cargo#17258)
- fix(path): clarify error message when path dependency has wrong package (rust-lang/cargo#16927)
- fix(toml): warn on hyphenated lint names and duplicates (rust-lang/cargo#17051)
- fix(test): gate trim-paths tests on split debuginfo support (rust-lang/cargo#17256)
- test(git): Explicitly test for git injection attacks (rust-lang/cargo#17253)
- fix(git): Suggest libgit2 if git-cli fails (rust-lang/cargo#17252)
- fix(diag): bound transitive unused dependency traversal (rust-lang/cargo#17251)
- fix(git): Hide git fetch output without progress  (rust-lang/cargo#17243)
- revert(lint): Remove `new_implicit_minimum_version_req` (rust-lang/cargo#16321) (rust-lang/cargo#17249)
- fix: Add haiku's dylib path (rust-lang/cargo#17248)
- Zsh completion: Add `-p` and `--package` flags for `cargo add` (rust-lang/cargo#17247)
- refactor(source): Clarify the name of the remote git registry (rust-lang/cargo#17240)
- fix(timings): only report units the job queue actually ran (rust-lang/cargo#17238)
- Do not include proc-macro deps in rustc search path args (rust-lang/cargo#17236)
- chore(deps): update cargo-semver-checks to v0.49.0 (rust-lang/cargo#17237)
- rustdoc: rename the doc parts metadata params (rust-lang/cargo#17234)

r? ghost
@rust-bors rust-bors Bot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jul 25, 2026
@rust-bors

rust-bors Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

💔 Test for 2799e29 failed: CI. Failed job:

@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

A job failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)

@weihanglo

Copy link
Copy Markdown
Member Author
Run src/ci/scripts/install-wix.sh
curl: (35) Recv failure: Connection was reset

@bors retry

@rust-bors rust-bors Bot added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. labels Jul 25, 2026
@jieyouxu

Copy link
Copy Markdown
Member

githubstatus says outage was mitigated
@bors p=1000

@rust-bors

This comment has been minimized.

rust-bors Bot pushed a commit that referenced this pull request Jul 25, 2026
Update cargo submodule



17 commits in 3efb1f477e99b42974b982d939fd100303cdf7db..54b61f13a4eea47ec3ee95237d4107976d7909ed
2026-07-17 23:53:19 +0000 to 2026-07-24 13:23:18 +0000
- chore: bump to `libgit2-sys@0.18.7+1.9.6` (rust-lang/cargo#17259)
- Enable build-dir layout v2 on nightly by default (rust-lang/cargo#17258)
- fix(path): clarify error message when path dependency has wrong package (rust-lang/cargo#16927)
- fix(toml): warn on hyphenated lint names and duplicates (rust-lang/cargo#17051)
- fix(test): gate trim-paths tests on split debuginfo support (rust-lang/cargo#17256)
- test(git): Explicitly test for git injection attacks (rust-lang/cargo#17253)
- fix(git): Suggest libgit2 if git-cli fails (rust-lang/cargo#17252)
- fix(diag): bound transitive unused dependency traversal (rust-lang/cargo#17251)
- fix(git): Hide git fetch output without progress  (rust-lang/cargo#17243)
- revert(lint): Remove `new_implicit_minimum_version_req` (rust-lang/cargo#16321) (rust-lang/cargo#17249)
- fix: Add haiku's dylib path (rust-lang/cargo#17248)
- Zsh completion: Add `-p` and `--package` flags for `cargo add` (rust-lang/cargo#17247)
- refactor(source): Clarify the name of the remote git registry (rust-lang/cargo#17240)
- fix(timings): only report units the job queue actually ran (rust-lang/cargo#17238)
- Do not include proc-macro deps in rustc search path args (rust-lang/cargo#17236)
- chore(deps): update cargo-semver-checks to v0.49.0 (rust-lang/cargo#17237)
- rustdoc: rename the doc parts metadata params (rust-lang/cargo#17234)

r? ghost
@rust-bors rust-bors Bot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. and removed S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. labels Jul 25, 2026
@rust-bors

rust-bors Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

💔 Test for d0f85c2 failed: CI. Failed job:

@rust-log-analyzer

Copy link
Copy Markdown
Collaborator

The job dist-x86_64-msvc failed! Check out the build log: (web) (plain enhanced) (plain)

Click to see the possible cause of the failure (guessed by this bot)
Running diesel-2.2.10: Debug + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm + X86_64UnknownLinuxGnu
Running diesel-2.2.10: Opt + [Full, IncrFull, IncrUnchanged, IncrPatched] + Llvm + X86_64UnknownLinuxGnu
Finished benchmark diesel-2.2.10 (4/9)
Finished benchmark cargo-0.87.1 (2/9)
collector error: Failed to profile 'cargo-0.87.1' with Eprintln, recorded: expected success, got exit code: 101

stderr=    Updating crates.io index
    Blocking waiting for file lock on package cache
    Blocking waiting for file lock on package cache
---

error: could not compile `cargo` (lib)

Caused by:
  process didn't exit successfully: `C:\a\rust\rust\opt-artifacts\rustc-perf\target\debug\rustc-fake.exe --crate-name cargo --edition=2021 'src\cargo\lib.rs' --error-format=json --json=diagnostic-rendered-ansi,artifacts,future-incompat --crate-type lib --emit=dep-info,metadata -C embed-bitcode=no -C debuginfo=2 '--allow=clippy::all' '--warn=clippy::correctness' '--warn=clippy::self_named_module_files' --warn=rust_2018_idioms '--allow=rustdoc::private_intra_doc_links' '--warn=clippy::print_stdout' '--warn=clippy::print_stderr' '--warn=clippy::disallowed_methods' '--warn=clippy::dbg_macro' --check-cfg 'cfg(docsrs,test)' --check-cfg 'cfg(feature, values("all-static", "openssl", "openssl-sys", "vendored-libgit2", "vendored-openssl"))' -C metadata=69e388f6c13125a5 -C extra-filename=-3e3538d64eb919c8 --out-dir 'C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo/3e3538d64eb919c8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\adler2/d70cceafd0a4111f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ahash/f3644296eac8fc43\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\aho-corasick/3dac4595754d6772\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\allocator-api2/b6247c8790082086\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\annotate-snippets/3d5ebe5dc8cafe90\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstream/52728d2f69a1a78d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstyle/c7dbe1eb9f0e9de7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstyle-parse/b2df618fa56e3a8f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstyle-query/6b91f95bcd6384b6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstyle-wincon/b6e26e32e7dec6b9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anyhow/bfee64140387e43f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\arc-swap/c171ea32d7f4fe17\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\arrayref/0547423a9ffd0827\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\arrayvec/4faa9ea27fbb13e2\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\base16ct/a11cebcda839d66f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\base64/c6b1e4633ed34f47\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\base64ct/a1f6f4c35112321a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bitflags/a58be4302ff8a8ba\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bitmaps/22f35b52abf63262\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\blake3/99cf7c16fc1af38b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\block-buffer/579c4ef10f088b2e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bstr/256a6859b8792e1d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\byteorder/dddfc8c2a02fc11d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bytes/e0b2abdb61f476a6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bytesize/36cc290f92530578\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-credential/d1bc3b8bf0e7d3b0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-credential-wincred/8d5f5810dc435a72\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-platform/4391d9de2293cd60\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-util/1314bcaa4e444eb9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-util-schemas/d9bbc05b4f504b41\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cfg-if/f2cfec39f226e007\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap/440d2ea9af02d329\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap_builder/bc8c3bf77ef1fb21\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap_complete/d15596b89be80004\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap_lex/081e18932bc40995\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clru/9f8979a57ffc65f8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\color-print/f7528beef9da01c6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\color-print-proc-macro/c3c270f6db00c1f8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\colorchoice/475a8a296a19ea7e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\const-oid/7624c07df3c20b1d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\constant_time_eq/faa84ded1fa8f5a6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cpufeatures/fd9abae97ef2e6f8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crates-io/00ed2dfeb47a377c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crc32fast/0fa708d06aed8757\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crossbeam-channel/f9e223eacc9b9995\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crossbeam-deque/d619f6a84b1299ea\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crossbeam-epoch/783cb2f3a3a05cd5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crossbeam-utils/cb1b85b6f0387e95\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crypto-bigint/b16064635fe9d651\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crypto-common/607c1829d3661d04\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ct-codecs/81c379f214f59df4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\curl/18eab92a8a817f0a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\curl-sys/947540acebeb6021\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\der/5b586d2e36d11649\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\deranged/8a23e72ca0e33449\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\digest/d41fd37ba4f15158\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\displaydoc/6508d65a6f5f0376\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\dunce/b60598b51f0e4a9c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ecdsa/3057475d15c61dc6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ed25519-compact/bbb43017d8ae5901\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\either/a3dd325e7e8b4f29\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\elliptic-curve/a4243595eb11cb99\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\encoding_rs/330686acaaf35bde\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\equivalent/deb7032da4061dd0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\erased-serde/b7a4418ec190ca00\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\fallible-iterator/0c1b838f0f71e1f3\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\fallible-streaming-iterator/7f762db46e923fde\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\faster-hex/b2be1098f3a934a2\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\fastrand/50d0a47240f5f79f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ff/59313ec0d919f23d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\fiat-crypto/0d7d52b9605cdd77\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\filetime/e191ea2df935ed01\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\flate2/42bc3efc2eff200d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\fnv/0a0b205450d4c0fa\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\foldhash/4325906979a557b0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\form_urlencoded/e46d7f802d0f8929\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\generic-array/f315955f504ad359\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\getrandom/1e50c2f2881b4685\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\getrandom/506f28f37a04e25d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\git2/4626cbc342c7f8ae\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\git2-curl/f854be81bd013eb7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix/e71efa93fb6b1bb7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-actor/2598d23e514df69a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-attributes/da2d7eeeb4ec1734\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-bitmap/0904a3782902d1c5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-chunk/881117b4cb81739b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-command/79b4ee9dc5ebf376\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-commitgraph/f7bb93bc1e9d20e7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-config/535fe2641169f21b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-config-value/d116aaf1d129fef5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-credentials/f4ee503feea34dc9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-date/5388d4817da9e44b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-diff/a0fd47511627c400\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-dir/adb0d8e54a0d3364\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-discover/bb6c9a2d96f721a7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-features/182e4d8c23db95a2\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-filter/205bcbd522e271d1\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-fs/e5d86587adf5636e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-glob/9e50d2382b789031\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-hash/cd94891351094c41\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-hashtable/940f64163a2f29ce\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-ignore/c43c4334347cdf10\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-index/448fe378a8d91258\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-lock/70d565580df2f8b0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-negotiate/d90af3aab0b8f145\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-object/eaecc171ba10941f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-odb/8271bf5a0cc126d5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-pack/df966bc3376af5a8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-packetline/1bb88dce7aff9101\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-packetline-blocking/7bb38cf44387c993\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-path/3ac2d23fd0291e9a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-pathspec/53b78af60d5a3db5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-prompt/855e20abec5d461f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-protocol/d5b66f0e22ddccb2\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-quote/3a98991e790633b0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-ref/8c8a46d0ecb74e97\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-refspec/0d2ebf7d5606122f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-revision/3b7f34879230d415\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-revwalk/7cf160258bbfd3e8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-sec/ec77017c86273045\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-shallow/2de9c4d73347dccf\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-submodule/2a017a7f13055d10\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-tempfile/2806111d2e3a031f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-trace/9abc34d4ee52192a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-transport/673e8af8c5e35efb\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-traverse/41631a419b8f6c43\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-url/56f6abd8b858d29d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-utils/c7a46248a236d626\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-validate/27a3e1323795e162\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix-worktree/392bc3cfb9ece6f7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\glob/3d6173478350cc9f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\globset/82f73088024d6d20\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\group/665ff64988d73249\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hashbrown/0c82358d2d095cf4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hashbrown/2d1d8d2a652c191a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hashlink/8061a79a914caa3c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hex/79c426d37030e172\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hkdf/be04244da7cb4310\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hmac/db4f95627fc3425c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\home/5fa5ffa054d1f13e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\http-auth/3951142dcb8683d6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\humantime/486913657d37c248\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_collections/4ae4825ef5ffd4d1\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_locid/7a14ec2fbb6f639b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_locid_transform/8128c31eccd8b327\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_locid_transform_data/e4bd48c207c31fb8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_normalizer/210c38cbe30c3b37\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_normalizer_data/2b38c2e59d9d083f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_properties/8d0626d3a983d5e7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_properties_data/029528545cf2b496\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_provider/17a7657e007d752c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\icu_provider_macros/88a49269f38e8abd\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\idna/7517bc4afac5eff3\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\idna_adapter/b10b462ce1f6dcc4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ignore/9b1621df738d4408\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\im-rc/55b9482bc85d5dec\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\indexmap/9bd92bab2b890d7d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\is_executable/a1ba652efa70b6ff\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\is_terminal_polyfill/6f05a67fef1bd584\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\itertools/759240d5f6c10c65\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\itoa/775b8679d7723b3d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\jiff/b812d3262bbe877f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\jiff-tzdb/fbc23b0118b779a6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\jiff-tzdb-platform/8e89c539c2036022\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\jobserver/ddbf5d55aad5f56d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\kstring/10132c478f88ca22\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\lazy_static/9478afca47aaf4bc\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\lazycell/2ac200f3c1658de0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libc/3421ee5d8b8c2a78\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libgit2-sys/f407ab087007d9ca\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libnghttp2-sys/cca8fa51a6dea816\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libsqlite3-sys/f608f948f570a55c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libssh2-sys/05d2ba040145250a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libz-sys/7de44fdca41346ca\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\litemap/043bac05472ca666\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\lock_api/28dde6ffcfaf3cb4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\log/2199e86615f4b52d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\matchers/ba337176270a9dc4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\maybe-async/1b8d1a72c7e9092b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\memchr/629c94ca16dc5e8a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\memmap2/16d4aa6158a5e53d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\miniz_oxide/1242ecb5b2b4517a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\miow/4fb9f54c5d5cb331\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\normpath/ea344049a8ad4093\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\nu-ansi-term/55156fa4c81ade92\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\num-conv/92373b8b69e456ba\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\num-traits/6637149c049b4be1\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\once_cell/57e905fbd2127268\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\opener/70b72830ab96b32b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ordered-float/c4684b259dcbc36a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\orion/9032b43faf18e5cf\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\os_info/59abaaf56398e429\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\overload/e7d714b0d973fc28\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\p384/617fbac21e1b3d08\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\parking_lot/6c87fb33e123209e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\parking_lot_core/3f20ab4a63dda3af\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pasetors/600a86e2ff0fabb9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pathdiff/24ff702934341982\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pem-rfc7468/e3b1686d15b77cf0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\percent-encoding/cbc1c9ff1c96fdf9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pin-project-lite/833b3a3dc313ae34\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pkcs8/0ecbec02913e0fab\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\powerfmt/dab49a98811c71b6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ppv-lite86/89ea76cd2b9fc5c1\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\primeorder/132aa97146ab6203\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\prodash/99b879ba8e4c0186\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand/1af8b0b7433e17b7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand_chacha/f73fe521743e50be\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand_core/264fade6467b134a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand_core/f27dbc59144a8ada\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand_xoshiro/4a09f99af8b335e6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex/a94657984f752c07\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex-automata/46c8bdb4691f484a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex-automata/f5ab762d5d693a06\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex-syntax/350929217d90bff4\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex-syntax/a07a0c358b3c4dbd\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rfc6979/6f2980b50940553a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rusqlite/d53dd93c81d7b2c2\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustc-hash/2b3dfbb86364c23e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustc-stable-hash/dceab676159fe532\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustfix/48fc1e618e9e2cb5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ryu/7df919d267c1e041\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\same-file/6431fb7f16068b6b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\schannel/9a46c0713809a063\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\scopeguard/0ddf3bfcacbcd354\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sec1/81f67cc685e75b74\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\semver/e290c9677df19761\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde/e63dea51f5ad5505\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde-untagged/73c4424d4311879e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde-value/bdba2fc134fab66e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_derive/fdb4a98913b02beb\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_ignored/f901a7ae4d058c80\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_json/1cafa7634a23abf7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_spanned/058bd77834f4f4b8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sha1/915eabcae3744db6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sha1_smol/6d2e42435f1096b8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sha2/24a093058e3e1e14\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sharded-slab/be999f0217787fac\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\shell-escape/e622ae2eaddcb0fa\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\shell-words/7931b17e70cea717\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\shlex/3266e7854d88b329\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\signature/f791b87e45bb8506\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sized-chunks/c6203dcf52872cda\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\smallvec/f799c01b6b9fc3b7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\socket2/0d57f0c9199212e6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\spki/cd32f04dcab1bb2e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\stable_deref_trait/b3a89a2ed4349c7a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\static_assertions/9cce7c9104bbf1db\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\strsim/f4a185e07263a471\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\subtle/643a9bf18b5f2335\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\supports-hyperlinks/1cd47b3501f1731d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\supports-unicode/e2ed2af2cebebc3c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tar/8fc70a7ddeeecf13\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tempfile/18d91317c51b60b0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\terminal_size/d44bd483e2b8fdbd\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thiserror/162a1aeaba0d01d7\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thiserror/6576780c47e0b407\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thiserror-impl/9f51f8da20684e30\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thiserror-impl/b830fe3ff5166013\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thread_local/58d576c43ccbf73f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\time/c647e86ca81c3072\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\time-core/81edf36a8d1330e5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tinystr/131d29c4c90ee167\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tinyvec/2fe79f5d2a62c25c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tinyvec_macros/745604982037d41e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\toml/7ba62cb9bece8629\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\toml_datetime/bf2c336d13542a6d\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\toml_edit/c54876b25ae11c46\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing/864094b764e519b8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-attributes/d194a48727e253f8\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-chrome/4826ff436f5e4ac9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-core/17aec9c5e654a773\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-log/da7bcf5fd41866de\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-subscriber/b1733a87074bed8f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\typeid/f73913b1f714fa04\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\typenum/304af84811c3bc7b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicase/dd5098b177f3ad61\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicode-bom/9d2fdb007d7920be\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicode-normalization/1d17733e7b84e794\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicode-width/06ddb6083a8c218e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicode-xid/5622ffce1902b7c5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\url/adfa426166204949\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\utf16_iter/fa08d0f24d3b01a3\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\utf8_iter/ad445a2c233037c3\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\utf8parse/ed37afeb60407ff0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\walkdir/130b6ceea1ca5714\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\winapi/d57cf636cd871a4a\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\winapi-util/d83b4727a0392825\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-sys/e8e6234a14d5469e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-sys/f2c7da031a90638b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-sys/f2e6aee7bce1eda5\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-targets/020d6da8b544f885\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-targets/b5bd3909693b9ac9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows_x86_64_msvc/b1f81dd57bd7f52e\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows_x86_64_msvc/c8c5f0bd5e83d8df\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\winnow/9b14efc1774a85b6\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\winnow/a39e809dc7ba319f\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\write16/bbe237623a800d2c\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\writeable/8437087a151df4e0\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\yoke/105d51f2f0307fcd\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\yoke-derive/373b53f1c7b7f4f9\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerocopy/7ab28c3ba4be6526\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerocopy/d577b92517dd55ad\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerocopy-derive/854384cf72be8404\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerofrom/6e08faabda7acafe\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerofrom-derive/69b9a1d92e665085\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zeroize/f3f909a6bc165498\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerovec/d376ec3f8137520b\out' -L 'dependency=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\zerovec-derive/c149a37e4462789f\out' --extern 'annotate_snippets=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\annotate-snippets/3d5ebe5dc8cafe90\out\libannotate_snippets-3d5ebe5dc8cafe90.rmeta' --extern 'anstream=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstream/52728d2f69a1a78d\out\libanstream-52728d2f69a1a78d.rmeta' --extern 'anstyle=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anstyle/c7dbe1eb9f0e9de7\out\libanstyle-c7dbe1eb9f0e9de7.rmeta' --extern 'anyhow=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\anyhow/bfee64140387e43f\out\libanyhow-bfee64140387e43f.rmeta' --extern 'base64=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\base64/c6b1e4633ed34f47\out\libbase64-c6b1e4633ed34f47.rmeta' --extern 'blake3=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\blake3/99cf7c16fc1af38b\out\libblake3-99cf7c16fc1af38b.rmeta' --extern 'bytesize=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\bytesize/36cc290f92530578\out\libbytesize-36cc290f92530578.rmeta' --extern 'cargo_credential=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-credential/d1bc3b8bf0e7d3b0\out\libcargo_credential-d1bc3b8bf0e7d3b0.rmeta' --extern 'cargo_credential_wincred=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-credential-wincred/8d5f5810dc435a72\out\libcargo_credential_wincred-8d5f5810dc435a72.rmeta' --extern 'cargo_platform=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-platform/4391d9de2293cd60\out\libcargo_platform-4391d9de2293cd60.rmeta' --extern 'cargo_util=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-util/1314bcaa4e444eb9\out\libcargo_util-1314bcaa4e444eb9.rmeta' --extern 'cargo_util_schemas=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\cargo-util-schemas/d9bbc05b4f504b41\out\libcargo_util_schemas-d9bbc05b4f504b41.rmeta' --extern 'clap=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap/440d2ea9af02d329\out\libclap-440d2ea9af02d329.rmeta' --extern 'clap_complete=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\clap_complete/d15596b89be80004\out\libclap_complete-d15596b89be80004.rmeta' --extern 'color_print=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\color-print/f7528beef9da01c6\out\libcolor_print-f7528beef9da01c6.rmeta' --extern 'crates_io=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\crates-io/00ed2dfeb47a377c\out\libcrates_io-00ed2dfeb47a377c.rmeta' --extern 'curl=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\curl/18eab92a8a817f0a\out\libcurl-18eab92a8a817f0a.rmeta' --extern 'curl_sys=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\curl-sys/947540acebeb6021\out\libcurl_sys-947540acebeb6021.rmeta' --extern 'filetime=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\filetime/e191ea2df935ed01\out\libfiletime-e191ea2df935ed01.rmeta' --extern 'flate2=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\flate2/42bc3efc2eff200d\out\libflate2-42bc3efc2eff200d.rmeta' --extern 'git2=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\git2/4626cbc342c7f8ae\out\libgit2-4626cbc342c7f8ae.rmeta' --extern 'git2_curl=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\git2-curl/f854be81bd013eb7\out\libgit2_curl-f854be81bd013eb7.rmeta' --extern 'gix=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\gix/e71efa93fb6b1bb7\out\libgix-e71efa93fb6b1bb7.rmeta' --extern 'glob=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\glob/3d6173478350cc9f\out\libglob-3d6173478350cc9f.rmeta' --extern 'hex=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hex/79c426d37030e172\out\libhex-79c426d37030e172.rmeta' --extern 'hmac=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\hmac/db4f95627fc3425c\out\libhmac-db4f95627fc3425c.rmeta' --extern 'home=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\home/5fa5ffa054d1f13e\out\libhome-5fa5ffa054d1f13e.rmeta' --extern 'http_auth=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\http-auth/3951142dcb8683d6\out\libhttp_auth-3951142dcb8683d6.rmeta' --extern 'humantime=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\humantime/486913657d37c248\out\libhumantime-486913657d37c248.rmeta' --extern 'ignore=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\ignore/9b1621df738d4408\out\libignore-9b1621df738d4408.rmeta' --extern 'im_rc=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\im-rc/55b9482bc85d5dec\out\libim_rc-55b9482bc85d5dec.rmeta' --extern 'indexmap=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\indexmap/9bd92bab2b890d7d\out\libindexmap-9bd92bab2b890d7d.rmeta' --extern 'itertools=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\itertools/759240d5f6c10c65\out\libitertools-759240d5f6c10c65.rmeta' --extern 'jobserver=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\jobserver/ddbf5d55aad5f56d\out\libjobserver-ddbf5d55aad5f56d.rmeta' --extern 'lazycell=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\lazycell/2ac200f3c1658de0\out\liblazycell-2ac200f3c1658de0.rmeta' --extern 'libgit2_sys=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libgit2-sys/f407ab087007d9ca\out\liblibgit2_sys-f407ab087007d9ca.rmeta' --extern 'memchr=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\memchr/629c94ca16dc5e8a\out\libmemchr-629c94ca16dc5e8a.rmeta' --extern 'opener=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\opener/70b72830ab96b32b\out\libopener-70b72830ab96b32b.rmeta' --extern 'os_info=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\os_info/59abaaf56398e429\out\libos_info-59abaaf56398e429.rmeta' --extern 'pasetors=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pasetors/600a86e2ff0fabb9\out\libpasetors-600a86e2ff0fabb9.rmeta' --extern 'pathdiff=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\pathdiff/24ff702934341982\out\libpathdiff-24ff702934341982.rmeta' --extern 'rand=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rand/1af8b0b7433e17b7\out\librand-1af8b0b7433e17b7.rmeta' --extern 'regex=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\regex/a94657984f752c07\out\libregex-a94657984f752c07.rmeta' --extern 'rusqlite=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rusqlite/d53dd93c81d7b2c2\out\librusqlite-d53dd93c81d7b2c2.rmeta' --extern 'rustc_hash=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustc-hash/2b3dfbb86364c23e\out\librustc_hash-2b3dfbb86364c23e.rmeta' --extern 'rustc_stable_hash=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustc-stable-hash/dceab676159fe532\out\librustc_stable_hash-dceab676159fe532.rmeta' --extern 'rustfix=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\rustfix/48fc1e618e9e2cb5\out\librustfix-48fc1e618e9e2cb5.rmeta' --extern 'same_file=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\same-file/6431fb7f16068b6b\out\libsame_file-6431fb7f16068b6b.rmeta' --extern 'semver=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\semver/e290c9677df19761\out\libsemver-e290c9677df19761.rmeta' --extern 'serde=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde/e63dea51f5ad5505\out\libserde-e63dea51f5ad5505.rmeta' --extern 'serde_untagged=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde-untagged/73c4424d4311879e\out\libserde_untagged-73c4424d4311879e.rmeta' --extern 'serde_ignored=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_ignored/f901a7ae4d058c80\out\libserde_ignored-f901a7ae4d058c80.rmeta' --extern 'serde_json=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\serde_json/1cafa7634a23abf7\out\libserde_json-1cafa7634a23abf7.rmeta' --extern 'sha1=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\sha1/915eabcae3744db6\out\libsha1-915eabcae3744db6.rmeta' --extern 'shell_escape=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\shell-escape/e622ae2eaddcb0fa\out\libshell_escape-e622ae2eaddcb0fa.rmeta' --extern 'supports_hyperlinks=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\supports-hyperlinks/1cd47b3501f1731d\out\libsupports_hyperlinks-1cd47b3501f1731d.rmeta' --extern 'supports_unicode=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\supports-unicode/e2ed2af2cebebc3c\out\libsupports_unicode-e2ed2af2cebebc3c.rmeta' --extern 'tar=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tar/8fc70a7ddeeecf13\out\libtar-8fc70a7ddeeecf13.rmeta' --extern 'tempfile=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tempfile/18d91317c51b60b0\out\libtempfile-18d91317c51b60b0.rmeta' --extern 'thiserror=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\thiserror/6576780c47e0b407\out\libthiserror-6576780c47e0b407.rmeta' --extern 'time=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\time/c647e86ca81c3072\out\libtime-c647e86ca81c3072.rmeta' --extern 'toml=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\toml/7ba62cb9bece8629\out\libtoml-7ba62cb9bece8629.rmeta' --extern 'toml_edit=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\toml_edit/c54876b25ae11c46\out\libtoml_edit-c54876b25ae11c46.rmeta' --extern 'tracing=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing/864094b764e519b8\out\libtracing-864094b764e519b8.rmeta' --extern 'tracing_chrome=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-chrome/4826ff436f5e4ac9\out\libtracing_chrome-4826ff436f5e4ac9.rmeta' --extern 'tracing_subscriber=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\tracing-subscriber/b1733a87074bed8f\out\libtracing_subscriber-b1733a87074bed8f.rmeta' --extern 'unicase=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicase/dd5098b177f3ad61\out\libunicase-dd5098b177f3ad61.rmeta' --extern 'unicode_width=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\unicode-width/06ddb6083a8c218e\out\libunicode_width-06ddb6083a8c218e.rmeta' --extern 'url=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\url/adfa426166204949\out\liburl-adfa426166204949.rmeta' --extern 'walkdir=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\walkdir/130b6ceea1ca5714\out\libwalkdir-130b6ceea1ca5714.rmeta' --extern 'windows_sys=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\windows-sys/f2c7da031a90638b\out\libwindows_sys-f2c7da031a90638b.rmeta' --skip-this-rustc -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\blake3/d36e02b880dddcc3\out' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\blake3/d36e02b880dddcc3\out' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\curl-sys/2d77bb4c918aaaca\out\build' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libnghttp2-sys/798628953887f347\out\i\lib' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libz-sys/a08a2484166f0450\out\lib' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libz-sys/a08a2484166f0450\out\lib' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libgit2-sys/20a7bd46d44f2ec8\out\build' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libssh2-sys/456330a1c5bf3c53\out\build' -L 'native=C:\Users\RUNNER~1\AppData\Local\Temp\.tmpC42tVg\target\debug\build\libsqlite3-sys/b97bd1f392379843\out' -L 'native=C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\windows_x86_64_msvc-0.52.6\lib' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\windows_x86_64_msvc-0.48.5\lib' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64' -L 'native=C:\Program Files\Microsoft Visual Studio\18\Enterprise\VC\Tools\MSVC\14.51.36231\atlmfc\lib\x64'` (exit code: 1)


 stdout=


---
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\backtrace.rs:296
   4: anyhow::Error::msg<alloc::string::String>
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.103\src\backtrace.rs:10
   5: collector::check_command_output
             at .\collector\src\lib.rs:236
   6: collector::async_command_output::async_fn$0
             at .\collector\src\lib.rs:263
   7: collector::compile::execute::impl$1::run_rustc::async_fn$0
             at .\collector\src\compile\execute\mod.rs:528
   8: collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block$0
             at .\collector\src\compile\benchmark\mod.rs:388
   9: core::future::future::impl$1::poll<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> > >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\core\src\future\future.rs:133
  10: tokio::runtime::scheduler::current_thread::impl$9::block_on::closure$0::closure$0::closure$0<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> > > >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:778
  11: tokio::task::coop::with_budget
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\task\coop\mod.rs:167
  12: tokio::task::coop::budget
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\task\coop\mod.rs:133
  13: tokio::runtime::scheduler::current_thread::impl$9::block_on::closure$0::closure$0<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> > > >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:778
  14: tokio::runtime::scheduler::current_thread::Context::enter<enum2$<core::task::poll::Poll<enum2$<core::result::Result<tuple$<>,anyhow::Error> > > >,tokio::runtime::scheduler::current_thread::impl$9::block_on::closure$0::closure_env$0<core::pin::Pin<ref_mut$<
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:451
  15: tokio::runtime::scheduler::current_thread::impl$9::block_on::closure$0<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> > > >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:777
  16: tokio::runtime::scheduler::current_thread::impl$9::enter::closure$0<tokio::runtime::scheduler::current_thread::impl$9::block_on::closure_env$0<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:865
  17: tokio::runtime::context::scoped::Scoped<enum2$<tokio::runtime::scheduler::Context> >::set<enum2$<tokio::runtime::scheduler::Context>,tokio::runtime::scheduler::current_thread::impl$9::enter::closure_env$0<tokio::runtime::scheduler::current_thread::impl$9::
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\context\scoped.rs:40
  18: tokio::runtime::context::set_scheduler::closure$0<tuple$<alloc::boxed::Box<tokio::runtime::scheduler::current_thread::Core,alloc::alloc::Global>,enum2$<core::option::Option<enum2$<core::result::Result<tuple$<>,anyhow::Error> > > > >,tokio::runtime::schedul
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\context.rs:181
  19: std::thread::local::LocalKey<tokio::runtime::context::Context>::try_with<tokio::runtime::context::Context,tokio::runtime::context::set_scheduler::closure_env$0<tuple$<alloc::boxed::Box<tokio::runtime::scheduler::current_thread::Core,alloc::alloc::Global>,e
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\thread\local.rs:463
  20: std::thread::local::LocalKey<tokio::runtime::context::Context>::with<tokio::runtime::context::Context,tokio::runtime::context::set_scheduler::closure_env$0<tuple$<alloc::boxed::Box<tokio::runtime::scheduler::current_thread::Core,alloc::alloc::Global>,enum2
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\thread\local.rs:427
  21: tokio::runtime::context::set_scheduler<tuple$<alloc::boxed::Box<tokio::runtime::scheduler::current_thread::Core,alloc::alloc::Global>,enum2$<core::option::Option<enum2$<core::result::Result<tuple$<>,anyhow::Error> > > > >,tokio::runtime::scheduler::current
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\context.rs:181
  22: tokio::runtime::scheduler::current_thread::CoreGuard::enter<tokio::runtime::scheduler::current_thread::impl$9::block_on::closure_env$0<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_bl
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:865
  23: tokio::runtime::scheduler::current_thread::CoreGuard::block_on<core::pin::Pin<ref_mut$<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> > > >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:765
  24: tokio::runtime::scheduler::current_thread::impl$0::block_on::closure$0<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:205
  25: tokio::runtime::context::runtime::enter_runtime<tokio::runtime::scheduler::current_thread::impl$0::block_on::closure_env$0<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> >,enum2$<core::result::Re
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\context\runtime.rs:65
  26: tokio::runtime::scheduler::current_thread::CurrentThread::block_on<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\scheduler\current_thread\mod.rs:193
  27: tokio::runtime::runtime::Runtime::block_on_inner<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\runtime.rs:371
  28: tokio::runtime::runtime::Runtime::block_on<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0> >
             at C:\Users\runneradmin\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\tokio-1.52.3\src\runtime\runtime.rs:345
  29: collector::utils::wait_for_future<enum2$<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0::async_block_env$0>,enum2$<core::result::Result<tuple$<>,anyhow::Error> > >
             at .\collector\src\utils\mod.rs:16
  30: collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure$0
             at .\collector\src\compile\benchmark\mod.rs:377
  31: std::sys::backtrace::__rust_begin_short_backtrace<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$<core::result::Result<tuple$<>,anyhow::Error> > >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\sys\backtrace.rs:166
  32: std::thread::lifecycle::spawn_unchecked::closure$1::closure$0<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$<core::result::Result<tuple$<>,anyhow::Error> > >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\thread\lifecycle.rs:70
  33: core::panic::unwind_safe::impl$25::call_once<enum2$<core::result::Result<tuple$<>,anyhow::Error> >,std::thread::lifecycle::spawn_unchecked::closure$1::closure_env$0<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\core\src\panic\unwind_safe.rs:275
  34: std::panicking::catch_unwind::do_call<core::panic::unwind_safe::AssertUnwindSafe<std::thread::lifecycle::spawn_unchecked::closure$1::closure_env$0<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$<core::result::Res
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panicking.rs:576
  35: std::thread::lifecycle::JoinInner<enum2$<core::result::Result<tuple$<>,anyhow::Error> > >::join<enum2$<core::result::Result<tuple$<>,anyhow::Error> > >
  36: std::panicking::catch_unwind
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panicking.rs:544
  37: std::panic::catch_unwind
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panic.rs:359
  38: std::thread::lifecycle::spawn_unchecked::closure$1<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$<core::result::Result<tuple$<>,anyhow::Error> > >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\thread\lifecycle.rs:68
  39: core::ops::function::FnOnce::call_once<std::thread::lifecycle::spawn_unchecked::closure_env$1<collector::compile::benchmark::impl$4::measure::async_fn$0::closure$3::closure_env$0,enum2$<core::result::Result<tuple$<>,anyhow::Error> > >,tuple$<> >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\core\src\ops\function.rs:250
  40: std::sys::thread::windows::impl$0::new::thread_start
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\sys\thread\windows.rs:58
  41: BaseThreadInitThunk
  42: RtlUserThreadStart
---
             at .\collector\src\bin\collector.rs:98
   6: collector::main_result
             at .\collector\src\bin\collector.rs:1162
   7: collector::main
             at .\collector\src\bin\collector.rs:271
   8: core::ops::function::FnOnce::call_once<void (*)(),tuple$<> >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\core\src\ops\function.rs:250
   9: std::sys::backtrace::__rust_begin_short_backtrace<void (*)(),tuple$<> >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\sys\backtrace.rs:166
  10: std::rt::lang_start::closure$0<tuple$<> >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\rt.rs:206
  11: std::rt::lang_start_internal::closure$0
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\rt.rs:175
  12: std::panicking::catch_unwind::do_call
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panicking.rs:576
  13: std::panicking::catch_unwind
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panicking.rs:544
  14: std::panic::catch_unwind
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\panic.rs:359
  15: std::rt::lang_start_internal
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\rt.rs:171
  16: std::rt::lang_start<tuple$<> >
             at /rustc/08d5b675a9b2abdca5e2fe4eabe0e07bbda15d49/library\std\src\rt.rs:205
  17: main
  18: invoke_main
             at D:\a\_work\1\s\src\vctools\crt\vcstartup\src\startup\exe_common.inl:78
  19: __scrt_common_main_seh

@JonathanBrouwer

JonathanBrouwer commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

@bors r-
Failure seems real?

@rust-bors rust-bors Bot added the S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. label Jul 25, 2026
@rust-bors

rust-bors Bot commented Jul 25, 2026

Copy link
Copy Markdown
Contributor

@rust-bors rust-bors Bot removed the S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. label Jul 25, 2026
@ranger-ross

Copy link
Copy Markdown
Member

Assuming this is the problem 🤔

error: Unrecognized option: 'skip-this-rustc'
error: could not compile `cargo` (lib)

@weihanglo

weihanglo commented Jul 25, 2026

Copy link
Copy Markdown
Member Author

Yeah I guess rustc-pert isn't yet ready for the new Cargo build dir layout. Not supporting @argfile I guess

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-run-make Area: port run-make Makefiles to rmake.rs S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

6 participants