From 6659682eee145a6b6a7fe373b95ae89c91beb2a7 Mon Sep 17 00:00:00 2001 From: Mystikfluu Date: Thu, 29 Dec 2022 12:48:40 +0100 Subject: [PATCH] combine use statements for readability --- src/main.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 2b11219..aa3bb5f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,8 +1,7 @@ use std::collections::HashMap; +use std::io::{Read, Write}; use rand::rngs::OsRng; use rand::RngCore; -use std::io::Write; -use std::io::Read; mod utils; fn main() {