Updated textwrap to 0.13.0

This commit is contained in:
ChristianVisintin 2020-12-10 10:41:13 +01:00
parent 4aa262a273
commit e36ae7e32d
3 changed files with 12 additions and 3 deletions

View file

@ -21,6 +21,8 @@ Work in progress
- Removed `CTRL`; just use keys now.
- bugfix:
- prevent panic in set_progress, for progress values `> 100.0 or < 0.0`
- dependencies:
- updated `textwrap` to `0.13.0`
## 0.1.0

11
Cargo.lock generated
View file

@ -603,6 +603,12 @@ version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae524f056d7d770e174287294f562e95044c68e88dec909a00d2094805db9d75"
[[package]]
name = "smawk"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1bc737c97d093feb72e67f4926d9b22d717ce8580cd25f0ce86d74e859c466d"
[[package]]
name = "socket2"
version = "0.3.17"
@ -676,10 +682,11 @@ dependencies = [
[[package]]
name = "textwrap"
version = "0.12.1"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "203008d98caf094106cfaba70acfed15e18ed3ddb7d94e49baec153a2b462789"
checksum = "b1bca196a5c5a7bc57a5c92809cf5670e16bcbca3bf0d09ef47150bf97221f6f"
dependencies = [
"smawk",
"unicode-width",
]

View file

@ -25,7 +25,7 @@ rpassword = "5.0.0"
unicode-width = "0.1.7"
chrono = "0.4.19"
bytesize = "1.0.1"
textwrap = "0.12.1"
textwrap = "0.13.0"
regex = "1.4.2"
lazy_static = "1.4.0"
hostname = "0.3.1"