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
error[E0282]: type annotations needed for `Box<_>`
--> /Users/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/time-0.3.30/src/format_description/parse/mod.rs:83:9
Workaround:
Run cargo update
However after that another error pops up:
Compiling logging v0.1.0 (/Users/user/Documents/GitHub/sidecar/logging)
error[E0432]: unresolved import `zstd_sys::ZSTD_cParameter::ZSTD_c_experimentalParam6`
--> /Users/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/zstd-safe-6.0.6/src/lib.rs:609:13
|
609 | ZSTD_c_experimentalParam6 as ZSTD_c_targetCBlockSize,
| -------------------------^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| no `ZSTD_c_experimentalParam6` in `ZSTD_cParameter`
| help: a similar name exists in the module: `ZSTD_c_experimentalParam1`
Reproduction
Clone repository
Initialize LFS
Install rust with Homebrew
Run cargo build --bin webserver
Log output
Compiling http-body v1.0.0
error[E0282]: type annotations needed for`Box<_>`
--> /Users/ernest/.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`
The text was updated successfully, but these errors were encountered:
Before submitting your bug report
Environment
Description
Unable to compile sidecar due to
Workaround:
Run
cargo update
However after that another error pops up:
Reproduction
cargo build --bin webserver
Log output
The text was updated successfully, but these errors were encountered: