This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

⬆️ Update Rust crate cargo to 0.91.0 (#35)

* ⬆️ Update Rust crate cargo to 0.91.0

* compilemode -> userintent

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gwenn Le Bihan <hey@ewen.works>

author
renovate[bot]
co-author
renovate[bot]
co-author
Gwenn Le Bihan
committer
GitHub
date (Oct 23, 2025, 12:09 PM UTC) commit 8b194a9d parent 4a5bd5bf
+5 -6
+2 -3
Cargo.lock
··· 367 367 368 368 [[package]] 369 369 name = "cargo" 370 - version = "0.86.0" 370 + version = "0.91.0" 371 371 source = "registry+https://github.com/rust-lang/crates.io-index" 372 - checksum = "62fdf5dbde4bf8d8149a4d32568d28d92af9dc4a4975727d89bd8dfb69fb810e" 372 + checksum = "0f46c7f53180bf46c220e2af1ceff951e2ce088184fa9009ad6915efee25915d" 373 373 dependencies = [ 374 374 "annotate-snippets", 375 375 "anstream", ··· 377 377 "anyhow", 378 378 "base64", 379 379 "blake3", 380 - "bytesize", 381 380 "cargo-credential", 382 381 "cargo-credential-libsecret", 383 382 "cargo-credential-macos-keychain",
+1 -1
Cargo.toml
··· 94 94 rayon = "1.11.0" 95 95 futures-util = "0.3.31" 96 96 ws = { version = "0.9.2", optional = true } 97 - cargo = { version = "0.86.0", optional = true } 97 + cargo = { version = "0.91.0", optional = true } 98 98 toml = "0.9.8" 99 99 indexmap = "2.12.0" 100 100 watchexec = { version = "8.0.1", optional = true }
+2 -2
src/cli/run.rs
··· 1 1 use cargo::{ 2 2 core::{ 3 - compiler::{BuildConfig, CompileMode}, 3 + compiler::{BuildConfig, UserIntent}, 4 4 resolver::CliFeatures, 5 5 Workspace, 6 6 }, ··· 21 21 None, 22 22 false, 23 23 &[], 24 - CompileMode::Build, 24 + UserIntent::Build, 25 25 )?, 26 26 cli_features: CliFeatures::new_all(false), 27 27 spec: Packages::Default,