From 7f26b41ea735acdaf58aede3f868c24e988d5dbd Mon Sep 17 00:00:00 2001 From: Yoshua Wuyts Date: Tue, 29 Sep 2020 11:18:25 +0200 Subject: [PATCH] Fix pin-project issues See https://github.com/taiki-e/pin-project-lite/issues/33 --- src/lib.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 86c1ed2..5a28592 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -31,9 +31,8 @@ //! - [SSE Spec](https://html.spec.whatwg.org/multipage/server-sent-events.html#concept-event-stream-last-event-id) //! - [EventSource web platform tests](https://github.com/web-platform-tests/wpt/tree/master/eventsource) -#![forbid(rust_2018_idioms)] #![deny(missing_debug_implementations, nonstandard_style)] -#![warn(missing_docs, missing_doc_code_examples, unreachable_pub)] +#![warn(missing_docs, rust_2018_idioms, unreachable_pub)] mod decoder; mod encoder;