mirror of
https://github.com/MercuryWorkshop/epoxy-tls.git
synced 2025-05-13 06:20:02 -04:00
partially implement tower trait
This commit is contained in:
parent
2158b9323e
commit
6ca14ad26a
7 changed files with 221 additions and 2 deletions
|
@ -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::*;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue