diff --git a/Cargo.lock b/Cargo.lock index d63ae21b..d2a7df66 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -443,7 +443,7 @@ dependencies = [ "scopetime", "serde", "simplelog", - "textwrap 0.12.1", + "textwrap 0.13.0", "tui", "unicode-width", "which", @@ -1085,6 +1085,12 @@ version = "1.4.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f" +[[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.12" @@ -1183,10 +1189,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 567d1a7b..e6bd1f66 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,7 @@ ron = "0.6" serde = "1.0" anyhow = "1.0.35" unicode-width = "0.1" -textwrap = "0.12" +textwrap = "0.13" [target.'cfg(target_os = "linux")'.dependencies] which = "4.0"