From 162e88c727bdf6f19f6e660b6892b85afb48dd37 Mon Sep 17 00:00:00 2001 From: Uttarayan Mondal Date: Wed, 3 Jan 2024 17:15:53 +0530 Subject: [PATCH] [feat] Don't make the >= open ended for version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 89e77f4..51c0b94 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/uttarayan21/ansi-to-tui" [dependencies] nom = "7.1" simdutf8 = { version = "0.1", optional = true } -tui = { version = "0.21", default-features = false, package = "ratatui" } +tui = { version = "0.*,>=0.21", default-features = false, package = "ratatui" } thiserror = "1.0" smallvec = { version = "1.10.0", features = ["const_generics"] }