proxmox-async: move TokioWriterAdapter to blocking

Signed-off-by: Dietmar Maurer <dietmar@proxmox.com>
This commit is contained in:
Dietmar Maurer 2021-11-20 16:38:36 +01:00
parent 6c4982bd7c
commit 7b7247fa80
3 changed files with 3 additions and 1 deletions

View File

@ -4,5 +4,8 @@
mod std_channel_stream;
pub use std_channel_stream::StdChannelStream;
mod tokio_writer_adapter;
pub use tokio_writer_adapter::TokioWriterAdapter;
mod wrapped_reader_stream;
pub use wrapped_reader_stream::WrappedReaderStream;

View File

@ -3,5 +3,4 @@ pub mod broadcast_future;
pub mod compression;
pub mod runtime;
pub mod stream;
pub mod tokio_writer_adapter;
pub mod zip;