1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-29 03:57:44 +00:00

bump textwrap to 0.15

This commit is contained in:
Terts Diepraam 2022-03-19 16:28:21 +01:00
parent 3c88fb460b
commit ee1ae64970
2 changed files with 4 additions and 13 deletions

15
Cargo.lock generated
View file

@ -349,7 +349,7 @@ dependencies = [
"selinux", "selinux",
"sha1", "sha1",
"tempfile", "tempfile",
"textwrap 0.14.2", "textwrap 0.15.0",
"time", "time",
"unindent", "unindent",
"unix_socket", "unix_socket",
@ -2087,9 +2087,9 @@ dependencies = [
[[package]] [[package]]
name = "textwrap" name = "textwrap"
version = "0.14.2" version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0066c8d12af8b5acd21e00547c3797fde4e8677254a7ee429176ccebbe93dd80" checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
dependencies = [ dependencies = [
"smawk", "smawk",
"terminal_size", "terminal_size",
@ -2097,15 +2097,6 @@ dependencies = [
"unicode-width", "unicode-width",
] ]
[[package]]
name = "textwrap"
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1141d4d61095b28419e22cb0bbf02755f5e54e0526f97f1e3d1d160e60885fb"
dependencies = [
"terminal_size",
]
[[package]] [[package]]
name = "thiserror" name = "thiserror"
version = "1.0.30" version = "1.0.30"

View file

@ -249,7 +249,7 @@ clap = { version = "3.1", features = ["wrap_help", "cargo"] }
clap_complete = "3.0" clap_complete = "3.0"
phf = "0.10.1" phf = "0.10.1"
lazy_static = { version="1.3" } lazy_static = { version="1.3" }
textwrap = { version="0.14", features=["terminal_size"] } textwrap = { version="0.15", features=["terminal_size"] }
uucore = { version=">=0.0.11", package="uucore", path="src/uucore" } uucore = { version=">=0.0.11", package="uucore", path="src/uucore" }
selinux = { version="0.2", optional = true } selinux = { version="0.2", optional = true }
ureq = "2.4.0" ureq = "2.4.0"