From 98868bd6aaffbc92bf53ea0c2b7fa85b10741021 Mon Sep 17 00:00:00 2001 From: amy null Date: Fri, 13 Oct 2023 13:20:13 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feature:=200.8.1:=20Reduced=20log?= =?UTF-8?q?=20noise,=20updated=20deps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.lock | 2 +- Cargo.toml | 20 ++++++++++++++++---- 2 files changed, 17 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4424e43..bd73a42 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -219,7 +219,7 @@ dependencies = [ [[package]] name = "boxxy" -version = "0.8.0" +version = "0.8.1" dependencies = [ "bat", "byteorder", diff --git a/Cargo.toml b/Cargo.toml index 41d6037..d0be766 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,13 +1,16 @@ [package] name = "boxxy" -version = "0.8.0" +version = "0.8.1" edition = "2021" repository = "https://github.com/queer/boxxy" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -bat = { version = "0.23.0", default-features = false, features = ["atty", "regex-onig"] } +bat = { version = "0.23.0", default-features = false, features = [ + "atty", + "regex-onig", +] } byteorder = "1.5.0" cfg-if = "1.0.0" clap = { version = "4.4.6", features = ["derive"] } @@ -22,8 +25,17 @@ haikunator = "0.1.2" lazy_static = "1.4.0" libc = "0.2.149" log = "0.4.20" -nix = { version = "0.27.1", features = ["process", "user", "mount", "sched", "ptrace"] } -owo-colors = { version = "3.5.0", features = ["supports-color", "supports-colors"] } +nix = { version = "0.27.1", features = [ + "process", + "user", + "mount", + "sched", + "ptrace", +] } +owo-colors = { version = "3.5.0", features = [ + "supports-color", + "supports-colors", +] } pretty_env_logger = "0.5.0" regex = "1.10.0" rlimit = "0.10.1"