From 807a70cecc93a888ceb04a6dda1101d39158a21b Mon Sep 17 00:00:00 2001 From: Wolfgang Bumiller Date: Wed, 2 Feb 2022 12:47:06 +0100 Subject: [PATCH] proxmox_async: move io::udp to net::udp Signed-off-by: Wolfgang Bumiller --- proxmox-async/src/io/mod.rs | 2 -- proxmox-async/src/lib.rs | 1 + proxmox-async/src/net/mod.rs | 1 + proxmox-async/src/{io => net}/udp.rs | 0 4 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 proxmox-async/src/net/mod.rs rename proxmox-async/src/{io => net}/udp.rs (100%) diff --git a/proxmox-async/src/io/mod.rs b/proxmox-async/src/io/mod.rs index 32081cf5..9a6d8a62 100644 --- a/proxmox-async/src/io/mod.rs +++ b/proxmox-async/src/io/mod.rs @@ -2,5 +2,3 @@ mod async_channel_writer; pub use async_channel_writer::AsyncChannelWriter; - -pub mod udp; diff --git a/proxmox-async/src/lib.rs b/proxmox-async/src/lib.rs index aee388c0..ad540d39 100644 --- a/proxmox-async/src/lib.rs +++ b/proxmox-async/src/lib.rs @@ -2,6 +2,7 @@ pub mod blocking; pub mod broadcast_future; pub mod compression; pub mod io; +pub mod net; pub mod runtime; pub mod stream; pub mod zip; diff --git a/proxmox-async/src/net/mod.rs b/proxmox-async/src/net/mod.rs new file mode 100644 index 00000000..7e5aaa13 --- /dev/null +++ b/proxmox-async/src/net/mod.rs @@ -0,0 +1 @@ +pub mod udp; diff --git a/proxmox-async/src/io/udp.rs b/proxmox-async/src/net/udp.rs similarity index 100% rename from proxmox-async/src/io/udp.rs rename to proxmox-async/src/net/udp.rs