src/bin/proxmox-backup-client.rs: use a std channel to write the catalog

This commit is contained in:
Dietmar Maurer
2020-01-22 12:49:08 +01:00
parent 02141b4d9b
commit f1d99e3f6a
4 changed files with 27 additions and 8 deletions

View File

@ -27,7 +27,9 @@ pub mod runtime;
pub mod ticket;
pub mod timer;
pub mod tty;
pub mod wrapped_reader_stream;
mod wrapped_reader_stream;
pub use wrapped_reader_stream::*;
mod std_channel_writer;
pub use std_channel_writer::*;