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
The project fails to compile because of deprecated dependency rustc-serialize. Serde is supposed to replace it according to it's detail page on crates.io
error looks like this .
error[E0310]: the parameter type `T` may not live long enough
--> /Users/taiwoajiboye/.cargo/registry/src/index.crates.io-6f17d22bba15001f/rustc-serialize-0.3.24/src/serialize.rs:1155:5
|
1155 | fn decode<D: Decoder>(d: &mut D) -> Result<Cow<'static, T>, D::Error> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
| |
| the parameter type `T` must be valid for the static lifetime...
| ...so that the type `T` will meet its required lifetime bounds...
|
note: ...that is required by this bound
--> /private/tmp/rust-20240410-5691-poxc6r/rustc-1.77.2-src/library/alloc/src/borrow.rs:180:30
help: consider adding an explicit lifetime bound
|
1151 | impl<'a, T: ?Sized + 'static> Decodable for Cow<'a, T>
| +++++++++
libunwind: malformed __unwind_info at 0x18270BCA8 bad second level page
The text was updated successfully, but these errors were encountered:
The project fails to compile because of deprecated dependency
rustc-serialize
.Serde
is supposed to replace it according to it's detail page on crates.ioerror looks like this .
The text was updated successfully, but these errors were encountered: