From 18f35256b3b57e6f6b4ee2bb1e32de423fe32054 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Jun 2021 07:51:27 +0000 Subject: [PATCH] Bump textwrap from 0.13.4 to 0.14.0 Bumps [textwrap](https://github.com/mgeisler/textwrap) from 0.13.4 to 0.14.0. - [Release notes](https://github.com/mgeisler/textwrap/releases) - [Changelog](https://github.com/mgeisler/textwrap/blob/master/CHANGELOG.md) - [Commits](https://github.com/mgeisler/textwrap/compare/0.13.4...0.14.0) --- updated-dependencies: - dependency-name: textwrap dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 16 +++++++++++++--- Cargo.toml | 2 +- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3527afd6..28039d2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -492,7 +492,7 @@ dependencies = [ "serde", "simplelog", "syntect", - "textwrap 0.13.4", + "textwrap 0.14.0", "tui", "unicode-segmentation", "unicode-truncate", @@ -1352,11 +1352,12 @@ dependencies = [ [[package]] name = "textwrap" -version = "0.13.4" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "cd05616119e612a8041ef58f2b578906cc2531a6069047ae092cfb86a325d835" +checksum = "f59f5365546b8424b0cc48868ae4fbbbc29a538dcc496b53543525201034f0c2" dependencies = [ "smawk", + "unicode-linebreak", "unicode-width", ] @@ -1428,6 +1429,15 @@ dependencies = [ "matches", ] +[[package]] +name = "unicode-linebreak" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "05a31f45d18a3213b918019f78fe6a73a14ab896807f0aaf5622aa0684749455" +dependencies = [ + "regex", +] + [[package]] name = "unicode-normalization" version = "0.1.19" diff --git a/Cargo.toml b/Cargo.toml index 6ab0029f..6da4b34d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -40,7 +40,7 @@ ron = "0.6" serde = "1.0" anyhow = "1.0" unicode-width = "0.1" -textwrap = "0.13" +textwrap = "0.14" unicode-truncate = "0.2" unicode-segmentation = "1.7" easy-cast = "0.4"