aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Cargo.lock32
-rw-r--r--atuin/Cargo.toml2
2 files changed, 18 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 46499c34..67397446 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -186,7 +186,7 @@ dependencies = [
"fuzzy-matcher",
"indicatif",
"interim",
- "itertools 0.12.0",
+ "itertools",
"log",
"ratatui",
"rpassword",
@@ -221,7 +221,7 @@ dependencies = [
"generic-array",
"hex",
"interim",
- "itertools 0.12.0",
+ "itertools",
"lazy_static",
"log",
"memchr",
@@ -1594,15 +1594,6 @@ dependencies = [
[[package]]
name = "itertools"
-version = "0.11.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
-dependencies = [
- "either",
-]
-
-[[package]]
-name = "itertools"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
@@ -2394,17 +2385,18 @@ dependencies = [
[[package]]
name = "ratatui"
-version = "0.24.0"
+version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "0ebc917cfb527a566c37ecb94c7e3fd098353516fb4eb6bea17015ade0182425"
+checksum = "a5659e52e4ba6e07b2dad9f1158f578ef84a73762625ddb51536019f34d180eb"
dependencies = [
"bitflags 2.4.1",
"cassowary",
"crossterm",
"indoc",
- "itertools 0.11.0",
+ "itertools",
"lru",
"paste",
+ "stability",
"strum",
"unicode-segmentation",
"unicode-width",
@@ -3021,7 +3013,7 @@ version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce81b7bd7c4493975347ef60d8c7e8b742d4694f4c49f93e0a12ea263938176c"
dependencies = [
- "itertools 0.12.0",
+ "itertools",
"nom",
"unicode_categories",
]
@@ -3235,6 +3227,16 @@ dependencies = [
]
[[package]]
+name = "stability"
+version = "0.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "ebd1b177894da2a2d9120208c3386066af06a488255caabc5de8ddca22dbc3ce"
+dependencies = [
+ "quote",
+ "syn 1.0.109",
+]
+
+[[package]]
name = "str-buf"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/atuin/Cargo.toml b/atuin/Cargo.toml
index 0cc72a07..95ad677d 100644
--- a/atuin/Cargo.toml
+++ b/atuin/Cargo.toml
@@ -70,7 +70,7 @@ tiny-bip39 = "1"
futures-util = "0.3"
fuzzy-matcher = "0.3.7"
colored = "2.0.4"
-ratatui = "0.24"
+ratatui = "0.25"
tracing = "0.1"
cli-clipboard = "0.4.0"