cargo
cargo copied to clipboard
The Rust package manager
### Problem There seem to be unnecessary build happening in the following sequence. ``` cargo build --release --all-targets cargo build --release --bins ``` Not sure that his matters, but my...
### What does this PR try to resolve? I've noticed that when running `cargo --list`, user-installed subcommands wouldn't have a description. In order to resolve this, cargo will now communicate...
**Problem** I have a custom Rust toolchain for development installed locally, call it `rust-shared`. I run it by setting `LD_LIBRARY_PATH` whenever I need to e.g. invoke the `rustup` `cargo` proxy....
### Problem Apologies in advance if this is categorized incorrectly, I can see how this could be either a bug or feature request. Recently introduced to Cargo is the ability...
### What does this PR try to resolve? Fix #13136 This PR aims to track of the following data in GC for further garbage collection use. 1. root-manifest path 2....
### Problem When the cargo test is executed, the binary built by the cargo build is overwritten as the result of the cargo test build. [test-build.zip](https://github.com/rust-lang/cargo/files/11189065/test-build.zip) ``` ├── Cargo.lock ├──...
**Summary** RFC: [#3028](https://github.com/rust-lang/rfcs/pull/3028) Related Issues: #4316 Implementation: #9992 Documentation: https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#artifact-dependencies Issues: https://github.com/rust-lang/cargo/labels/Z-bindeps Allow Cargo packages to depend on bin, cdylib, and staticlib crates, and use the artifacts built by those...
### Problem Im not sure if should be reaching out here or vscode for help on this...but i will start here and let me know if im int he wrong...
The library name `libsecret-1.so` is only found in `-dev` or `-devel` packages on many distros, and it's usually only a symlink. For example, this is what I have on Fedora:...
This PR adds (private to cargo internals) support for local registry overlays, in which you can locally pretend to add packages to remote registries; the local packages will have the...