From c7793a0beb3f8f317e9909e11c1edb00345f1b00 Mon Sep 17 00:00:00 2001 From: askiiart Date: Sat, 11 Jan 2025 20:50:58 -0600 Subject: [PATCH 1/2] remove unused import --- src/tests.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests.rs b/src/tests.rs index 1b5bbb9..01e9a43 100644 --- a/src/tests.rs +++ b/src/tests.rs @@ -5,7 +5,7 @@ use std::{ fs::remove_file, hash::{BuildHasher, Hasher, RandomState}, }; -use std::{fs::File, os::unix::fs::FileExt, thread::sleep}; +use std::{fs::File, thread::sleep}; /// Tests what stdout prints #[test] From b888ee2da656564393b227b48b454963ade67c3b Mon Sep 17 00:00:00 2001 From: askiiart Date: Sat, 11 Jan 2025 20:51:26 -0600 Subject: [PATCH 2/2] bump --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f3d18d5..5c41ba7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 4 [[package]] name = "better-commands" -version = "0.1.2" +version = "0.1.3" diff --git a/Cargo.toml b/Cargo.toml index 51e97b6..09f4555 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "better-commands" description = "A better way of running commands - get stdout and stderr together, in order with timestamps, while easily running code as it runs line-by-line" -version = "0.1.2" +version = "0.1.3" edition = "2021" license = "GPL-3.0-only" keywords = ["command", "cmd"]