From bde0db29cf2b7d0265be20945d7865743c7dc433 Mon Sep 17 00:00:00 2001 From: Ed Page Date: Thu, 16 Mar 2023 14:51:09 -0500 Subject: [PATCH] perf(help): Reduce binary size --- Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 7184d85105eb..6ca6c39f7c6f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,9 +25,9 @@ checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299" [[package]] name = "anstream" -version = "0.2.4" +version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1be94522db49757a6f9266e8ac18a59704e3e1c770c2e8173a39f9f8161a163a" +checksum = "2abc612600451a4beeff27bf046474b29f7eab30b15846975949f30f9e54afad" dependencies = [ "anstyle", "anstyle-parse", @@ -40,9 +40,9 @@ dependencies = [ [[package]] name = "anstyle" -version = "0.3.4" +version = "0.3.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1ba0b55c2201aa802adb684e7963ce2c3191675629e7df899774331e3ac747cf" +checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2" [[package]] name = "anstyle-parse" diff --git a/Cargo.toml b/Cargo.toml index c33f5edd0dcc..9d3139a45002 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -97,8 +97,8 @@ clap_lex = { path = "./clap_lex", version = "0.3.0" } bitflags = "1.2.0" unicase = { version = "2.6.0", optional = true } strsim = { version = "0.10.0", optional = true } -anstream = { version = "0.2.4", optional = true } -anstyle = { version = "0.3.4", features = ["std"], optional = true } +anstream = { version = "0.2.5", optional = true } +anstyle = { version = "0.3.5", features = ["std"], optional = true } terminal_size = { version = "0.2.1", optional = true } backtrace = { version = "0.3.67", optional = true } unicode-width = { version = "0.1.9", optional = true }