remove proxmox-protocol subcrate

AFAICT we have no use for it anymore, its api entry points
are gone. If we do end up needing something from it, it's
still in the git history anyway. (And about two thirds of it
can be made much less awkward by utilizing async-await
anyway, so no love lost there...)

Moved the chunker back into src/backup/chunker.rs

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller
2019-08-22 14:03:43 +02:00
parent 7a57cb77e1
commit 7d83440c60
19 changed files with 67 additions and 3073 deletions

View File

@ -134,6 +134,9 @@ pub use checksum_reader::*;
mod checksum_writer;
pub use checksum_writer::*;
mod chunker;
pub use chunker::*;
mod data_chunk;
pub use data_chunk::*;
@ -155,8 +158,6 @@ pub use chunk_stream::*;
mod chunk_stat;
pub use chunk_stat::*;
pub use proxmox_protocol::Chunker;
mod read_chunk;
pub use read_chunk::*;