tectonic-typesetting / tectonic

A modernized, complete, self-contained TeX/LaTeX engine, powered by XeTeX and TeXLive.
https://tectonic-typesetting.github.io/
Other
3.99k stars 162 forks source link

rust 1.80.0 build issue #1207

Open chenrui333 opened 3 months ago

chenrui333 commented 3 months ago

seeing some build failure as

error[E0282]: type annotations needed for `Box<_>`
  --> /Users/brew/Library/Caches/Homebrew/cargo_cache/registry/src/index.crates.io-6f17d22bba15001f/time-0.3.34/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
   |              ++++++++

see https://github.com/time-rs/time/issues/693

bryango commented 3 months ago

This should now be fixed on master by 6b49ca8db40aaca29cb375ce75add3e575558375.

chenrui333 commented 2 months ago

Any change of cutting a new release per the time crate update? Thanks!