crate-ci / cargo-release

Cargo subcommand `release`: everything about releasing a rust crate.
Apache License 2.0
1.31k stars 109 forks source link

chore(deps): Update Rust crate reqwest to 0.12.4 - autoclosed #770

Closed renovate[bot] closed 4 months ago

renovate[bot] commented 5 months ago

Mend Renovate

This PR contains the following updates:

Package Type Update Change
reqwest dependencies minor 0.11 -> 0.12.4

Release Notes

seanmonstar/reqwest (reqwest) ### [`v0.12.4`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0124) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.12.3...v0.12.4) - Add `zstd` support, enabled with `zstd` Cargo feature. - Add `ClientBuilder::read_timeout(Duration)`, which applies the duration for each read operation. The timeout resets after a successful read. ### [`v0.12.3`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0123) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.12.2...v0.12.3) - Add `FromStr` for `dns::Name`. - Add `ClientBuilder::built_in_webpki_certs(bool)` to enable them separately. - Add `ClientBuilder::built_in_native_certs(bool)` to enable them separately. - Fix sending `content-length: 0` for GET requests. - Fix response body `content_length()` to return value when timeout is configured. - Fix `ClientBuilder::resolve()` to use lowercase domain names. ### [`v0.12.2`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0122) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.12.1...v0.12.2) - Fix missing ALPN when connecting to socks5 proxy with rustls. - Fix TLS version limits with rustls. - Fix not detected ALPN h2 from server with native-tls. ### [`v0.12.1`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0121) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.12.0...v0.12.1) - Fix `ClientBuilder::interface()` when no TLS is enabled. - Fix `TlsInfo::peer_certificate()` being truncated with rustls. - Fix panic if `http2` feature disabled but TLS negotiated h2 in ALPN. - Fix `Display` for `Error` to not include its source error. ### [`v0.12.0`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v0120) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.27...v0.12.0) - Upgrade to `hyper`, `http`, and `http-body` v1. - Add better support for converting to and from `http::Request` and `http::Response`. - Add `http2` optional cargo feature, default on. - Add `charset` optional cargo feature, default on. - Add `macos-system-configuration` cargo feature, default on. - Change all optional dependencies to no longer be exposed as implicit features. - Add `ClientBuilder::interface(str)` to specify the local interface to bind to. - Experimental: disables the `http3` feature temporarily. #### v0.11.27 - Add `hickory-dns` feature, deprecating `trust-dns`. - (wasm) Fix `Form::text()` to not set octet-stream for plain text fields. #### v0.11.26 - Revert `system-configuration` upgrade, which broke MSRV on macOS. #### v0.11.25 - Fix `Certificate::from_pem_bundle()` parsing. - Fix Apple linker errors from detecting system proxies. #### v0.11.24 - Add `Certificate::from_pem_bundle()` to add a bundle. - Add `http3_prior_knowledge()` to blocking client builder. - Remove `Sync` bounds requirement for `Body::wrap_stream()`. - Fix HTTP/2 to retry `REFUSED_STREAM` requests. - Fix instances of converting `Url` to `Uri` that could panic. #### v0.11.23 - Add `Proxy::custom_http_auth(val)` for setting the raw `Proxy-Authorization` header when connecting to proxies. - Fix redirect to reject locations that are not `http://` or `https://`. - Fix setting `nodelay` when TLS is enabled but URL is HTTP. - (wasm) Add `ClientBuilder::user_agent(val)`. - (wasm) add `multipart::Form::headers(headers)`. #### v0.11.22 - Fix compilation on Windows when `trust-dns` is enabled. #### v0.11.21 - Add automatically detecting macOS proxy settings. - Add `ClientBuilder::tls_info(bool)`, which will put `tls::TlsInfo` into the response extensions. - Fix trust-dns resolver from possible hangs. - Fix connect timeout to be split among multiple IP addresses. #### v0.11.20 - Fix `deflate` decompression back to using zlib, as outlined in the spec. #### v0.11.19 - Add `ClientBuilder::http1_ignore_invalid_headers_in_responses()` option. - Add `ClientBuilder::http1_allow_spaces_after_header_name_in_responses()` option. - Add support for `ALL_PROXY` environment variable. - Add support for `use_preconfigured_tls` when combined with HTTP/3. - Fix `deflate` decompression from using the zlib decoder. - Fix `Response::{text, text_with_charset}()` to strip BOM characters. - Fix a panic when HTTP/3 is used if UDP isn't able to connect. - Fix some dependencies for HTTP/3. - Increase MSRV to 1.63. #### v0.11.18 - Fix `RequestBuilder::json()` method from overriding a previously set `content-type` header. An existing value will be left in place. - Upgrade internal dependencies for rustls and compression. #### v0.11.17 - Upgrade internal dependencies of Experimental HTTP/3 to use quinn v0.9 - (wasm) Fix blob url support #### v0.11.16 - Chore: set MSRV in `Cargo.toml`. - Docs: fix build on docs.rs #### v0.11.15 - Add `RequestBuilder` methods to split and reconstruct from its parts. - Add experimental HTTP/3 support. - Fix `connection_verbose` to log `write_vectored` calls. - (wasm) Make requests actually cancel if the future is dropped. #### v0.11.14 - Adds `Proxy::no_proxy(url)` that works like the NO_PROXY environment variable. - Adds `multipart::Part::headers(headers)` method to add custom headers. - (wasm) Add `Response::bytes_stream()`. - Perf: several internal optimizations reducing copies and memory allocations. #### v0.11.13 - Add `ClientBuilder::dns_resolver()` option for custom DNS resolvers. - Add `ClientBuilder::tls_sni(bool)` option to enable or disable TLS Server Name Indication. - Add `Identity::from_pkcs8_pem()` constructor when using `native-tls`. - Fix `redirect::Policy::limited(0)` from following any redirects. #### v0.11.12 - Add `ClientBuilder::resolve_to_addrs()` which allows a slice of IP addresses to be specified for a single host. - Add `Response::upgrade()` to await whether the server agrees to an HTTP upgrade. #### v0.11.11 - Add HTTP/2 keep-alive configuration methods on `ClientBuilder`. - Add `ClientBuilder::http1_allow_obsolete_multiline_headers_in_responses()`. - Add `impl Service` for `Client` and `&'_ Client`. - (wasm) Add `RequestBuilder::basic_auth()`. - Fix `RequestBuilder::header` to not override `sensitive` if user explicitly set on a `HeaderValue`. - Fix rustls parsing of elliptic curve private keys. - Fix Proxy URL parsing of some invalid targets. #### v0.11.10 - Add `Error::url()` to access the URL of an error. - Add `Response::extensions()` to access the `http::Extensions` of a response. - Fix `rustls-native-certs` to log an error instead of panicking when loading an invalid system certificate. - Fix passing Basic Authorization header to proxies. #### v0.11.9 - Add `ClientBuilder::http09_responses(bool)` option to allow receiving HTTP/0.9 responses. - Fix HTTP/2 to retry requests interrupted by an HTTP/2 graceful shutdown. - Fix proxy loading from environment variables to ignore empty values. #### v0.11.8 - Update internal webpki-roots dependency. #### v0.11.7 - Add `blocking::ClientBuilder::resolve()` option, matching the async builder. - Implement `From` for `Body`. - Fix `blocking` request-scoped timeout applying to bodies as well. - (wasm) Fix request bodies using multipart vs formdata. - Update internal `rustls` to 0.20. #### v0.11.6 - (wasm) Fix request bodies more. #### v0.11.5 - Add `ClientBuilder::http1_only()` method. - Add `tls::Version` type, and `ClientBuilder::min_tls_version()` and `ClientBuilder::max_tls_version()` methods. - Implement `TryFrom` for `http::Request`. - Implement `Clone` for `Identity`. - Fix `NO_PROXY`environment variable parsing to more closely match curl's. Comma-separated entries are now trimmed for whitespace, and `*` is allowed to match everything. - Fix redirection to respect `https_only` option. - (wasm) Add `Body::as_bytes()` method. - (wasm) Fix sometimes wrong conversation of bytes into a `JsValue`. - (wasm) Avoid dependency on serde-serialize feature. #### v0.11.4 - Add `ClientBuilder::resolve()` option to override DNS resolution for specific domains. - Add `native-tls-alpn` Cargo feature to use ALPN with the native-tls backend. - Add `ClientBuilder::deflate()` option and `deflate` Cargo feature to support decoding response bodies using deflate. - Add `RequestBuilder::version()` to allow setting the HTTP version of a request. - Fix allowing "invalid" certificates with the `rustls-tls` backend, when the server uses TLS v1.2 or v1.3. - (wasm) Add `try_clone` to `Request` and `RequestBuilder` #### v0.11.3 - Add `impl From for reqwest::Body`. - (wasm) Add credentials mode methods to `RequestBuilder`. #### v0.11.2 - Add `CookieStore` trait to customize the type that stores and retrieves cookies for a session. - Add `cookie::Jar` as a default `CookieStore`, easing creating some session cookies before creating the `Client`. - Add `ClientBuilder::http2_adaptive_window()` option to configure an adaptive HTTP2 flow control behavior. - Add `ClientBuilder::http2_max_frame_size()` option to adjust the maximum HTTP2 frame size that can be received. - Implement `IntoUrl` for `String`, making it more convenient to create requests with `format!`. #### v0.11.1 - Add `ClientBuilder::tls_built_in_root_certs()` option to disable built-in root certificates. - Fix `rustls-tls` glue to more often support ALPN to upgrade to HTTP/2. - Fix proxy parsing to assume `http://` if no scheme is found. - Fix connection pool idle reaping by enabling hyper's `runtime` feature. - (wasm) Add `Request::new()` constructor. ### [`v0.11.27`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01127) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.26...v0.11.27) - Add `hickory-dns` feature, deprecating `trust-dns`. - (wasm) Fix `Form::text()` to not set octet-stream for plain text fields. ### [`v0.11.26`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01126) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.25...v0.11.26) - Revert `system-configuration` upgrade, which broke MSRV on macOS. ### [`v0.11.25`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01125) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.24...v0.11.25) - Fix `Certificate::from_pem_bundle()` parsing. - Fix Apple linker errors from detecting system proxies. ### [`v0.11.24`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01124) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.23...v0.11.24) - Add `Certificate::from_pem_bundle()` to add a bundle. - Add `http3_prior_knowledge()` to blocking client builder. - Remove `Sync` bounds requirement for `Body::wrap_stream()`. - Fix HTTP/2 to retry `REFUSED_STREAM` requests. - Fix instances of converting `Url` to `Uri` that could panic. ### [`v0.11.23`](https://togithub.com/seanmonstar/reqwest/blob/HEAD/CHANGELOG.md#v01123) [Compare Source](https://togithub.com/seanmonstar/reqwest/compare/v0.11.22...v0.11.23) - Add `Proxy::custom_http_auth(val)` for setting the raw `Proxy-Authorization` header when connecting to proxies. - Fix redirect to reject locations that are not `http://` or `https://`. - Fix setting `nodelay` when TLS is enabled but URL is HTTP. - (wasm) Add `ClientBuilder::user_agent(val)`. - (wasm) add `multipart::Form::headers(headers)`.

Configuration

📅 Schedule: Branch creation - "before 5am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.



This PR has been generated by Mend Renovate. View repository job log here.

renovate[bot] commented 5 months ago

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

The artifact failure details are included below:

File name: Cargo.lock
Command failed: cargo update --config net.git-fetch-with-cli=true --manifest-path Cargo.toml --package reqwest@0.11.22 --precise 0.12.4
    Updating crates.io index
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_explicit_nosrc/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_implicit_namenosrc/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_git_ignore_exists/out`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/workspace_add_member/out/crates/foo`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/pijul_autodetect/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_hg_ignore_exists/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_implicit_nosrc/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_implicit_namesrc/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/lib_already_exists_src/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_implicit/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/mercurial_autodetect/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_hg/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/auto_git/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/bin_already_exists_explicit/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/creates_library_when_instructed_and_has_bin_file/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/ignores_failure_to_format_source/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_bin/out`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/git_autodetect/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/formats_source/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/explicit_bin_with_git/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/fossil_autodetect/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_git/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/lib_already_exists_nosrc/out`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/with_argument/out/foo`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/creates_binary_when_instructed_and_has_lib_file/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/simple_lib/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/inferred_bin_with_git/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/creates_binary_when_both_binlib_present/out`
warning: skipping duplicate package `case` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_init/git_ignore_exists_no_conflicting_entries/out`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/inherit_workspace_lints/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_with_members_glob/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_with_exclude_list/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_format_previous_items/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_with_absolute_package_path/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_with_empty_members/out/crates/foo`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_new/add_members_to_workspace_format_sorted/out/crates/foo`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/unknown_inherited_feature/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/unknown_inherited_feature/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_normalized_name/in/primary`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_inherit_dependency/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_inherit_dependency/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/empty_dep_table/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/add-basic.in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_version_with_git/in`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/dev_prefer_existing_version/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_older/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_older/out`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/manifest_path_package/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/manifest_path_package/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/preserve_sorted/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/features_preserve/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_default_features_with_no_default_features/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/preserve_unsorted/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_optional/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit_features/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit_features/in/dependency`
error: invalid string
expected `"`, `'`
 --> ../../../../../../home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_manifest/in/Cargo.toml:8:7
  |
8 | key = invalid-value
  |       ^
  |
error: invalid string
expected `"`, `'`
 --> ../../../../../../home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_manifest/out/Cargo.toml:8:7
  |
8 | key = invalid-value
  |       ^
  |
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_default_features/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit_optional/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit_optional/in/dependency`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/detect_workspace_inherit/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_incompatible/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_incompatible/out`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_rename_with_rename_noop/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_inherit_optional_noop/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_inherit_optional_noop/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_name/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_name/in/dependency`
warning: skipping duplicate package `xxx` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/preserve_features_table/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_no_optional/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/merge_activated_features/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/merge_activated_features/in/dependency`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_overwrite_inherit_dependency/in/dependency`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_workspace_dep_features/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_workspace_dep_features/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_path_name/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_path_name/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_path_with_version/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_path_with_version/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_with_rename/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_features/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_version_with_path/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_version_with_path/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_no_default_features_with_default_features/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/list_features_path/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_dev/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_dev/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_inline_features/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/git_registry/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_workspace_dep/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_workspace_dep/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/deprecated_section/in`
warning: skipping duplicate package `optional-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/list_features_path_no_default/in/optional`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/list_features_path_no_default/in/primary`
warning: skipping duplicate package `your-face` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/list_features_path_no_default/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_no_optional_with_optional/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_preserves_inline_table/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_ignore/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_ignore/out`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_no_default_features/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_rename_with_no_rename/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_optional_with_no_optional/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_inherit_features_noop/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_inherit_features_noop/in/dependency`
warning: skipping duplicate package `your-face` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_name_noop/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_inferred_name/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_inferred_name/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_git_with_path/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_git_with_path/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_rename_with_rename/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/features_deactivated_over_limit/in`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/build_prefer_existing_version/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/sorted_table_with_dotted_item/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/in/primary`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/invalid_key_rename_inherit_dependency/in/dependency`
warning: skipping duplicate package `your-face` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/overwrite_path_noop/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/registry/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/lockfile_updated/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_path/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_path/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/features_activated_over_limit/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/locked_unchanged/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_path_dev/in/primary`
warning: skipping duplicate package `cargo-list-test-fixture-dependency` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/workspace_path_dev/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/change_rename_target/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/in/primary`
warning: skipping duplicate package `your-face` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/path_inferred_name_conflicts_full_feature/in/dependency`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_latest/in`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/rust_version_latest/out`
warning: skipping duplicate package `cargo-list-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_add/deprecated_default_features/in`
warning: skipping duplicate package `test` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/mock-std/library/test`
warning: skipping duplicate package `dep-b` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_package/out/dep-b`
warning: skipping duplicate package `dep-a` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_package/out/dep-a`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/remove-basic.in`
warning: skipping duplicate package `cargo-remove-target-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/remove-target.in`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/avoid_empty_tables/out`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace_preserved/out/my-package`
warning: skipping duplicate package `my-other-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace_preserved/out/my-other-package`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/optional_feature/out`
warning: skipping duplicate package `dep-b` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_package_multiple/out/dep-b`
warning: skipping duplicate package `dep-a` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_package_multiple/out/dep-a`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/dev/out`
warning: skipping duplicate package `cargo-remove-target-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/target_dev/out`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace/in/my-package`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace/out/my-package`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_profile/in`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_profile/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_arg/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/offline/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_dep/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/optional_dep_feature/out`
warning: skipping duplicate package `cargo-remove-target-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/target_build/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_section_dep/out`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_replace/in/my-package`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_replace/out/my-package`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/multiple_dev/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/skip_gc_glob_profile/in`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/skip_gc_glob_profile/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/build/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_section/out`
warning: skipping duplicate package `cargo-remove-target-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/invalid_target_dep/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/no_arg/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/remove_basic/out`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace_non_virtual/in`
warning: skipping duplicate package `my-package` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace_non_virtual/out`
warning: skipping duplicate package `my-member` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/workspace_non_virtual/out/my-member`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/multiple_deps/out`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/optional_dep_feature_formatting/in`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/optional_dep_feature_formatting/out`
warning: skipping duplicate package `dep-b` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/remove-package.in/dep-b`
warning: skipping duplicate package `dep-a` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/remove-package.in/dep-a`
warning: skipping duplicate package `serde_derive` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_keep_used_patch/out/serde_derive`
warning: skipping duplicate package `serde` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/gc_keep_used_patch/out/serde`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/update_lock_file/in`
warning: skipping duplicate package `cargo-remove-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/update_lock_file/out`
warning: skipping duplicate package `cargo-remove-target-test-fixture` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_remove/target/out`
warning: skipping duplicate package `foo` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/tests/testsuite/cargo_bench/no_keep_going/in`
warning: skipping duplicate package `bar` found at `/home/ubuntu/.cargo/git/checkouts/cargo-e7ff1db891893a9e/5613aac/crates/cargo-test-support/containers/sshd/bar`
error: failed to select a version for the requirement `reqwest = "^0.11"`
candidate versions found which didn't match: 0.12.4
location searched: crates.io index
required by package `tame-index v0.10.0`
    ... which satisfies dependency `tame-index = "^0.10"` (locked to 0.10.0) of package `cargo-release v0.25.7 (/tmp/renovate/repos/github/crate-ci/cargo-release)`
perhaps a crate was updated and forgotten to be re-vendored?
epage commented 5 months ago

Blocked on tame-index, I think