perf(help): Reduce binary size

This commit is contained in:
Ed Page 2023-03-16 14:51:09 -05:00
parent 9516fd928f
commit f19e33eb27
2 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View file

@ -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"

View file

@ -63,8 +63,8 @@ clap_lex = { path = "../clap_lex", version = "0.4.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 }