partially implement tower trait

This commit is contained in:
Toshit Chawda 2024-02-05 09:08:34 -08:00
parent 2158b9323e
commit 6ca14ad26a
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
7 changed files with 221 additions and 2 deletions

View file

@ -1,3 +1,4 @@
#![feature(impl_trait_in_assoc_type)]
#[cfg(feature = "fastwebsockets")]
mod fastwebsockets;
mod packet;
@ -5,6 +6,10 @@ mod stream;
pub mod ws;
#[cfg(feature = "ws_stream_wasm")]
mod ws_stream_wasm;
#[cfg(feature = "hyper_tower")]
pub mod tokioio;
#[cfg(feature = "hyper_tower")]
pub mod tower;
pub use crate::packet::*;
pub use crate::stream::*;