Weihang Lo

Results 413 comments of Weihang Lo

Thank you for the suggestion. I am a fish user as well ❤️ 🐟 `cargo search` is in fact a thin wrapper on crates.io API [`/api/v1/crates`](https://doc.rust-lang.org/cargo/reference/registries.html#search). Cargo can't do much...

Semi-related: - https://github.com/rust-lang/cargo/issues/8842 - https://github.com/rust-lang/cargo/issues/10094 I got an impression that cargo doesn't give external subcommands much info, even cargo-clippy can't inherit a [jobserver from cargo](https://github.com/rust-lang/cargo/pull/10511) today.

One background knowledge: `cargo publish` is roughly `cargo package + call crates.io API`. Therefore, some shared code path between `cargo publish` and `cargo package` might affect each other. The requirement...

BTW, this is somehow related to . There are more discussions in the wild regarding a more sequential and smooth packaging/publishing process, though I cannot find them now.

It's hard to remote debug. The root cause varies from platform to platform. ehuss wrote a [simple guide](https://github.com/rust-lang/cargo/issues/9113#issuecomment-778691642) to follow if seeing SSL connection issue, as this may be the...

Also, knowing how Rust is installed is also important.

Thanks for the clear example! Here are more approaches to help investigate this issue: - Could you set [`net.git-fetch-with-cli`] and do it again? This uses system `git` binary instead of...

From line 259-264 of your output, looks like it's a general TLS error on Linux, not only happens with Cargo. ``` mint@mint:~$ git clone https://github.com/rust-lang/crates.io-index Cloning into 'crates.io-index'... remote: Enumerating...

> 💔 Test failed - [checks-actions](https://github.com/rust-lang/cargo/actions/runs/3208192142/jobs/5243909873) This new test needs to disambiguate as well. https://github.com/rust-lang/cargo/blob/882c5dd830aa3c7d1f1d548b56bc04a6fe2856ee/tests/testsuite/login.rs#L95-L120

Thank you for being interested in this feature! The Cargo team and contributors are currently working hard on this topic, as well as collaborating with crates.io team to build up...