From e290d7884031c02d08810b7a450e342402bc340b Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Mon, 1 Jul 2019 10:56:27 +0200 Subject: [PATCH] remove deprecated tools::io::ops reexport Signed-off-by: Wolfgang Bumiller --- proxmox-tools/src/io.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/proxmox-tools/src/io.rs b/proxmox-tools/src/io.rs index 0a63c61f..2e92ebba 100644 --- a/proxmox-tools/src/io.rs +++ b/proxmox-tools/src/io.rs @@ -3,11 +3,6 @@ //! The [`ReadExt`] trait provides additional operations for handling byte buffers for types //! implementing [`Read`](std::io::Read). -// DEPRECATED: -pub mod ops { - pub use super::ReadExt as ReadExtOps; -} - mod read; pub use read::*;