You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I started cargo outdated today, I got an error with libgit2, so I updated it as described in the README with the --locked parameter as cargo install cargo-outdated --locked --force, however this results in the following error:
error[E0282]: type annotations needed for `Box<_>`
--> /home/konrad/.cargo/registry/src/index.crates.io-6f17d22bba15001f/time-0.3.30/src/format_description/parse/mod.rs:83:9
|
83 | let items = format_items
| ^^^^^
...
86 | Ok(items.into())
| ---- type must be known at this point
|
= note: this is an inference error on crate `time` caused by an API change in Rust 1.80.0; update `time` to version `>=0.3.35` by calling `cargo update`
I'm using cargo 1.83.0-nightly (c1fa840a8 2024-08-29) installed via Rustup on Arch Linux. Current cargo-outdated version is 0.15.0.
Removing the --locked parameter fixes the issue.
I guess you can fix this by either removing the --locked from the README or by creating a new release with an updated lockfile.
The text was updated successfully, but these errors were encountered:
When I started cargo outdated today, I got an error with libgit2, so I updated it as described in the README with the --locked parameter as
cargo install cargo-outdated --locked --force
, however this results in the following error:I'm using cargo 1.83.0-nightly (c1fa840a8 2024-08-29) installed via Rustup on Arch Linux. Current cargo-outdated version is 0.15.0.
Removing the --locked parameter fixes the issue.
I guess you can fix this by either removing the
--locked
from the README or by creating a new release with an updated lockfile.The text was updated successfully, but these errors were encountered: