summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorNoah Too <krivahtoo@gmail.com>2022-10-21 21:26:39 +0300
committerGitHub <noreply@github.com>2022-10-21 14:26:39 -0400
commit38e82d4844a867f8b4ab5460dc54dd1b0f29afcb (patch)
tree6c27b80f0e671b66508a1ab9e1787bc68672df8a /Cargo.lock
parent7d89ec31a0028957bbbcb47cabc67d47523820dc (diff)
update ansi-to-tui to 2.0.0 (#210)
updated ansi-to-tui to 2.0.0 which has much better ansi parsing
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock22
1 files changed, 20 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index afb761b..1adbbbb 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -28,10 +28,12 @@ dependencies = [
[[package]]
name = "ansi-to-tui"
-version = "0.6.0"
+version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "33ef15b7b32ef426166ba4f153a0ade6fb3b81b20ff3d2cdbc89c369f5a2e620"
+checksum = "3460d7beaf8b192c09a55933da038ccd514f00efdb37d7d87f3ce078336b47e9"
dependencies = [
+ "nom",
+ "thiserror",
"tui",
]
@@ -508,6 +510,12 @@ dependencies = [
]
[[package]]
+name = "minimal-lexical"
+version = "0.2.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
+
+[[package]]
name = "mio"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -542,6 +550,16 @@ dependencies = [
]
[[package]]
+name = "nom"
+version = "7.1.1"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
+dependencies = [
+ "memchr",
+ "minimal-lexical",
+]
+
+[[package]]
name = "notify"
version = "5.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"