diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2024-05-26 20:59:15 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-26 20:59:15 +0300 |
commit | 1cb22103b4d60a7b9da0258945269ef0b147670e (patch) | |
tree | a9818d74e7d57201c204f5c3cf9c1eebd6f5fd39 | |
parent | 66d775b21c2d8e4721af0142d4550be55d864729 (diff) |
chore: Bump ratatui from 0.26.2 to 0.26.3 (#152)
Bumps [ratatui](https://github.com/ratatui-org/ratatui) from 0.26.2 to 0.26.3.
- [Release notes](https://github.com/ratatui-org/ratatui/releases)
- [Changelog](https://github.com/ratatui-org/ratatui/blob/main/CHANGELOG.md)
- [Commits](https://github.com/ratatui-org/ratatui/compare/v0.26.2...v0.26.3)
---
updated-dependencies:
- dependency-name: ratatui
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-rw-r--r-- | Cargo.lock | 22 | ||||
-rw-r--r-- | Cargo.toml | 2 |
2 files changed, 14 insertions, 10 deletions
@@ -313,12 +313,6 @@ dependencies = [ ] [[package]] -name = "indoc" -version = "2.0.5" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5" - -[[package]] name = "itertools" version = "0.12.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -521,14 +515,13 @@ dependencies = [ [[package]] name = "ratatui" -version = "0.26.2" +version = "0.26.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a564a852040e82671dc50a37d88f3aa83bbc690dfc6844cfe7a2591620206a80" +checksum = "f44c9e68fd46eda15c646fbb85e1040b657a58cdc8c98db1d97a55930d991eef" dependencies = [ "bitflags 2.5.0", "cassowary", "compact_str", - "indoc", "itertools", "lru", "paste", @@ -536,6 +529,7 @@ dependencies = [ "strum", "termion", "unicode-segmentation", + "unicode-truncate", "unicode-width", ] @@ -705,6 +699,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202" [[package]] +name = "unicode-truncate" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a5fbabedabe362c618c714dbefda9927b5afc8e2a8102f47f081089a9019226" +dependencies = [ + "itertools", + "unicode-width", +] + +[[package]] name = "unicode-width" version = "0.1.11" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -14,7 +14,7 @@ include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"] edition = "2021" [dependencies] -ratatui = { version = "0.26.2", default-features = false, features = [ +ratatui = { version = "0.26.3", default-features = false, features = [ "termion", ] } termion = "3.0.0" |