From 867d7bfe9d37c5aa077bf363d040032fa29ca639 Mon Sep 17 00:00:00 2001 From: Marc-Andre Lureau Date: Tue, 23 Jul 2024 16:37:48 +0400 Subject: [PATCH] feat(async): re-export bytes dependency whose types appear in API MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc-André Lureau --- crates/ironrdp-async/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/ironrdp-async/src/lib.rs b/crates/ironrdp-async/src/lib.rs index bdad66aa..12cd21ba 100644 --- a/crates/ironrdp-async/src/lib.rs +++ b/crates/ironrdp-async/src/lib.rs @@ -1,6 +1,8 @@ #[macro_use] extern crate tracing; +pub use bytes; + mod connector; mod framed; mod session;