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
grcov fails to build with the recent versions of Rust nightly (tested with rustc 1.81.0-nightly (cf2df68d1 2024-07-01)) due to time-rs/time#681:
error[E0282]: type annotations needed for `Box<_>`
--> /home/m4tx/.cargo/registry/src/index.crates.io-6f17d22bba15001f/time-0.3.23/src/format_description/parse/mod.rs:83:9
|
83 | let items = format_items
| ^^^^^
...
86 | Ok(items.into())
| ---- type must be known at this point
|
help: consider giving `items` an explicit type, where the placeholders `_` are specified
|
83 | let items: Box<_> = format_items
| ++++++++
Compiling thiserror-impl v1.0.43
Compiling clap_derive v4.3.2
Compiling chrono-tz v0.6.1
Compiling globwalk v0.8.1
For more information about this error, try `rustc --explain E0282`.
error: could not compile `time` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...
error: failed to compile `grcov v0.8.19`, intermediate artifacts can be found at `/tmp/cargo-installw35YGR`.
To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path.
Since the issue has been solved in time v0.3.36, it should be as easy as upgrading this one package in Cargo.lock (or running cargo update).
The text was updated successfully, but these errors were encountered:
grcov fails to build with the recent versions of Rust nightly (tested with
rustc 1.81.0-nightly (cf2df68d1 2024-07-01)
) due to time-rs/time#681:Since the issue has been solved in
time
v0.3.36, it should be as easy as upgrading this one package in Cargo.lock (or runningcargo update
).The text was updated successfully, but these errors were encountered: