aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorTobias Genannt <tobias.genannt@gmail.com>2023-10-28 14:30:02 +0200
committerGitHub <noreply@github.com>2023-10-28 13:30:02 +0100
commit206677878039fafeb2b7ee9847ef0c8632db91d0 (patch)
tree771de41e56921748d92a925b51081b27e00c7d40 /Cargo.lock
parentfix(bash): improve output of `enter_accept` (#1342) (diff)
downloadatuin-206677878039fafeb2b7ee9847ef0c8632db91d0.zip
Fix for breaking change in ratatui 0.24.0 (#1352)
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock14
1 files changed, 12 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index e59bae3f..e7b0c2cb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1692,6 +1692,15 @@ dependencies = [
]
[[package]]
+name = "lru"
+version = "0.12.0"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "1efa59af2ddfad1854ae27d75009d538d0998b4b2fd47083e743ac1a10e46c60"
+dependencies = [
+ "hashbrown 0.14.2",
+]
+
+[[package]]
name = "malloc_buf"
version = "0.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -2289,15 +2298,16 @@ dependencies = [
[[package]]
name = "ratatui"
-version = "0.23.0"
+version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad"
+checksum = "0ebc917cfb527a566c37ecb94c7e3fd098353516fb4eb6bea17015ade0182425"
dependencies = [
"bitflags 2.4.1",
"cassowary",
"crossterm",
"indoc",
"itertools",
+ "lru",
"paste",
"strum",
"unicode-segmentation",