chore(deps): pin ratatui to 0.22.0

This commit is contained in:
Orhun Parmaksız 2023-09-13 20:41:38 +03:00
parent 9d78748626
commit d0fd5baf7c
No known key found for this signature in database
GPG Key ID: F83424824B3E4B90
2 changed files with 3 additions and 56 deletions

57
Cargo.lock generated
View File

@ -543,15 +543,6 @@ version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
[[package]]
name = "itoa"
version = "1.0.6"
@ -856,22 +847,6 @@ dependencies = [
"cassowary",
"indoc",
"paste",
"unicode-segmentation",
"unicode-width",
]
[[package]]
name = "ratatui"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e2e4cd95294a85c3b4446e63ef054eea43e0205b1fd60120c16b74ff7ff96ad"
dependencies = [
"bitflags 2.3.3",
"cassowary",
"indoc",
"itertools",
"paste",
"strum",
"termion",
"unicode-segmentation",
"unicode-width",
@ -978,12 +953,6 @@ dependencies = [
"windows-sys",
]
[[package]]
name = "rustversion"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
[[package]]
name = "ryu"
version = "1.0.13"
@ -1076,28 +1045,6 @@ dependencies = [
"wayland-client",
]
[[package]]
name = "strum"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.25.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad8d03b598d3d0fff69bf533ee3ef19b8eeb342729596df84bcc7e1f96ec4059"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn 2.0.28",
]
[[package]]
name = "supports-color"
version = "1.3.1"
@ -1179,7 +1126,7 @@ dependencies = [
"copypasta-ext",
"getopts",
"log",
"ratatui 0.23.0",
"ratatui",
"systeroid-core",
"termion",
"thiserror",
@ -1258,7 +1205,7 @@ dependencies = [
"lazy_static",
"log",
"parking_lot",
"ratatui 0.22.0",
"ratatui",
]
[[package]]

View File

@ -30,7 +30,7 @@ version = "0.4.2" # managed by release.sh
path = "../systeroid-core"
[dependencies.ratatui]
version = "=0.23.0"
version = "=0.22.0"
default-features = false
features = ["termion"]