From 93d4b35d4d4073b88385e62fbcdc98ae80c80fdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 26 Nov 2019 22:43:40 +0100 Subject: [PATCH] Remove unused #[pin_project] attribute --- src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6106612..1a5d597 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -176,9 +176,7 @@ where /// through the respective `Stream` and `Sink`. Check more information about /// them in `futures-rs` crate documentation or have a look on the examples /// and unit tests for this crate. -#[pin_project] pub struct WebSocketStream { - #[pin] inner: WebSocket>, }