cargo
cargo copied to clipboard
The Rust package manager
### Problem A test marked as `test = false` is supposed to not be run when invoking `cargo test`. This works, however, not only is the test not run, it's...
### Problem Right now when run multiple alias together from `.cargo/config.toml` the `[alias]` its considered the argument of the first alias as a parameter not another alias. For instance: (disclaimer...
### Problem Build scripts are pragmatic but increase the surface area for supply chain attacks since they can execute arbitrary code. Most crates (at least in my experience) don't include...
The [docs for the `documentation` field](https://doc.rust-lang.org/cargo/reference/manifest.html#the-documentation-field) say > If no URL is specified in the manifest file, [crates.io](https://crates.io/) will automatically link your crate to the corresponding [docs.rs](https://docs.rs/) page. This sounds...
Cc https://github.com/rust-lang/cargo/issues/11777, https://github.com/rust-lang/crates.io/issues/1484
### What does this PR try to resolve? This PR is an implementation of [RFC 3553] to add support to generate pre-cursor SBOM files for compiled artifacts in Cargo. ###...
**Describe the problem you are trying to solve** I read about `cargo audit` on the Rust blog, but it isn't in `cargo --list`. **Describe the solution you'd like** Add `cargo...
Maintainers notes - The recompilation was fixed, but this issue is still open regarding having features change based on what is being built simultaneously. - The `cargo hack` plugin will...
### Problem When targeting `wasm32-unknown-emscripten` with Pthread support, the `*.worker.js` file is not copied to the output directory from the `deps` folder, even though the Emscripten compiler generates that file....
### Problem When building a crate that depends on other crates via git, sometimes you get an error like this: ``` Caused by: failed to load source for dependency `processor`...