Compare commits

...

3 Commits

Author SHA1 Message Date
JEEVITHA KANNAN K S
590b800b1d
Merge f4f7a85523 into e3688e9b3d 2024-10-25 11:01:44 +00:00
JEEVITHA KANNAN K S
f4f7a85523
chore: bump ansi-to-tui -> 7.0.0 2024-10-25 16:30:51 +05:30
Jeevitha Kannan K S
d0b668ad24
chore: bump ratatui -> 0.29.0 2024-10-22 08:42:45 +05:30
2 changed files with 34 additions and 8 deletions

38
Cargo.lock generated
View File

@ -46,12 +46,12 @@ dependencies = [
[[package]] [[package]]
name = "ansi-to-tui" name = "ansi-to-tui"
version = "6.0.0" version = "7.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00c4af0bef1b514c9b6a32a773caf604c1390fa7913f4eaa23bfe76f251d6a42" checksum = "67555e1f1ece39d737e28c8a017721287753af3f93225e4a445b29ccb0f5912c"
dependencies = [ dependencies = [
"nom", "nom",
"ratatui", "ratatui 0.29.0",
"simdutf8", "simdutf8",
"smallvec", "smallvec",
"thiserror", "thiserror",
@ -422,6 +422,12 @@ dependencies = [
"hashbrown", "hashbrown",
] ]
[[package]]
name = "indoc"
version = "2.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b248f5224d1d606005e02c97f5aa4e88eeb230488bcc03bc9ca4d7991399f2b5"
[[package]] [[package]]
name = "instability" name = "instability"
version = "0.3.2" version = "0.3.2"
@ -509,7 +515,7 @@ dependencies = [
"oneshot", "oneshot",
"portable-pty", "portable-pty",
"rand", "rand",
"ratatui", "ratatui 0.29.0",
"temp-dir", "temp-dir",
"tree-sitter-bash", "tree-sitter-bash",
"tree-sitter-highlight", "tree-sitter-highlight",
@ -750,7 +756,6 @@ dependencies = [
"bitflags 2.6.0", "bitflags 2.6.0",
"cassowary", "cassowary",
"compact_str", "compact_str",
"crossterm",
"instability", "instability",
"itertools", "itertools",
"lru", "lru",
@ -762,6 +767,27 @@ dependencies = [
"unicode-width 0.1.14", "unicode-width 0.1.14",
] ]
[[package]]
name = "ratatui"
version = "0.29.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabd94c2f37801c20583fc49dd5cd6b0ba68c716787c2dd6ed18571e1e63117b"
dependencies = [
"bitflags 2.6.0",
"cassowary",
"compact_str",
"crossterm",
"indoc",
"instability",
"itertools",
"lru",
"paste",
"strum",
"unicode-segmentation",
"unicode-truncate",
"unicode-width 0.2.0",
]
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.5.4" version = "0.5.4"
@ -1134,7 +1160,7 @@ version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d07f0233f0d4795d2dc6663cfc3ce56b87bebcee66d6bcc088aa6aff5c072361" checksum = "d07f0233f0d4795d2dc6663cfc3ce56b87bebcee66d6bcc088aa6aff5c072361"
dependencies = [ dependencies = [
"ratatui", "ratatui 0.28.1",
"vt100", "vt100",
] ]

View File

@ -20,7 +20,7 @@ crossterm = "0.28.1"
ego-tree = { workspace = true } ego-tree = { workspace = true }
oneshot = "0.1.8" oneshot = "0.1.8"
portable-pty = "0.8.1" portable-pty = "0.8.1"
ratatui = "0.28.1" ratatui = "0.29.0"
tui-term = "0.1.12" tui-term = "0.1.12"
temp-dir = "0.1.14" temp-dir = "0.1.14"
unicode-width = "0.2.0" unicode-width = "0.2.0"
@ -29,7 +29,7 @@ linutil_core = { path = "../core", version = "24.9.28" }
tree-sitter-highlight = "0.24.2" tree-sitter-highlight = "0.24.2"
tree-sitter-bash = "0.23.1" tree-sitter-bash = "0.23.1"
anstyle = "1.0.8" anstyle = "1.0.8"
ansi-to-tui = "6.0.0" ansi-to-tui = "7.0.0"
zips = "0.1.7" zips = "0.1.7"
[build-dependencies] [build-dependencies]