cargo-edit
cargo-edit copied to clipboard
A utility for managing cargo dependencies from the command line.
Apparently, when using the `cargo set-version --workspace` command in GitHub actions using a linux runner, the `Cargo.lock` file does not get updated with the updated version. When running on Windows,...
Rust version: 1.78.0 cargo-edit version: 0.12.2 + backport of 67e110a957d289b3fbd65bcb7bf243b7fe685df0 excerpt from build logs: ``` ---- lockfile::case stdout ---- thread 'lockfile::case' panicked at tests/cargo-upgrade/lockfile/mod.rs:22:10: ---- expected: tests/cargo-upgrade/lockfile/stderr.log ++++ actual: stderr...
When upgrading an entire workspace, cargo upgrade first shows `Checking virtual workspace's dependencies` and goes through those, and then goes through the crates in the workspace. When doing the latter,...
I recently came across this nice extension and really would love to use it more. However, I frequently have to revisit some dependencies I'd like to upgrade due to them...
 when use cargo upgrade,there is no any respond
### Feature Request Show [technical debt](https://medium.com/@ramanand.k/the-hidden-costs-of-technical-debt-what-lurks-beneath-bad-code-0b5f5390ae1f) numbers in `cargo upgrade` similar to like [badges](https://daily.dev/blog/best-practices-for-github-markdown-badges) do to encourage increasing maintainability, minimizing vulnerabilities, improving code and using new features. The simplest number...
``` % cargo upgrade Checking virtual workspace's dependencies Error: status code '401 Unauthorized': the request was not authorized ``` `cargo upgrade --verbose` dont seem to give any extra details on...
I am using cargo-edit to add metadata tags to my version string. For the moment, I am having trouble with adding metadata to version with pre-release tags (ex. 0.1.0-dev). `cargo...
An example: ```sh ❯ cargo set-version -p package -m 11.ge8fe5ff --dry-run Upgrading package from 0.1.17-beta.3 to 0.1.17+11.ge8fe5ff warning: aborting set-version due to dry run ❯ cargo set-version --version cargo-edit-set-version 0.12.3...
Hi there, I work in an offline environment where I only have access to a private crates repository. My `~/.cargo/config.toml` looks like this: ```toml [source.crates-io] replace-with = "my-private-mirror" [source.my-private-mirror] registry...