From a0aade4800944eb8df8b71af2ccfea2d7c90d6d6 Mon Sep 17 00:00:00 2001 From: rhysd Date: Tue, 24 Oct 2023 17:02:37 +0900 Subject: [PATCH] allow ratatui `>=0.23.0, <1` (fix #36) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3561c81..4510a7e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ search = ["dep:regex"] arbitrary = { version = "1", features = ["derive"], optional = true } crossterm = { package = "crossterm", version = "0.27", optional = true } crossterm-025 = { package = "crossterm", version = "0.25", optional = true } -ratatui = { version = "0.23.0", default-features = false, optional = true } +ratatui = { version = ">=0.23.0, <1", default-features = false, optional = true } regex = { version = "1", optional = true } termion = { version = "2.0", optional = true } termwiz = { version = "0.20.0", optional = true }