Closed mankinskin closed 4 years ago
I guess since https://github.com/taiki-e/pin-project has been updated from 0.4.24 to 0.4.26 this error occurs when building parallel-stream:
parallel-stream
error[E0453]: allow(explicit_outlives_requirements) overruled by outer forbid(rust_2018_idioms) --> src/from_stream.rs:9:1 | 9 | / pin_project! { 10 | | /// A parallel stream that was created from sequential stream. 11 | | /// 12 | | /// This stream is created by the [`from_stream`] function. ... | 21 | | } 22 | | } | |_^ overruled by previous forbid | ::: src/lib.rs:43:24 | 43 | #![forbid(unsafe_code, rust_2018_idioms)] | ---------------- `forbid` level set here
I guess since https://github.com/taiki-e/pin-project has been updated from 0.4.24 to 0.4.26 this error occurs when building
parallel-stream
: