diff --git a/CHANGELOG.md b/CHANGELOG.md index c314c49..6a71b0a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 00cf227..b2bc2cb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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", ] diff --git a/Cargo.toml b/Cargo.toml index b68e22f..f18eddb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"