contentauth / c2pa-js

JavaScript SDK for displaying and validating C2PA data
https://opensource.contentauthenticity.org
MIT License
71 stars 39 forks source link

deps: update `time` to fix build failure on Rust 1.80 #188

Open andrewhalle opened 1 month ago

andrewhalle commented 1 month ago

Update time to fix build failure on Rust 1.80.

Changes in this pull request

Ran cargo update time in packages/toolkit

Types of changes

Checklist

Before change:

error[E0282]: type annotations needed for `Box<_>`
   |
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
   |              ++++++++

After change:

Successful build