From 440ec54c5d807aea388efe518dbc7b8af7dd1548 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Tue, 19 Sep 2023 00:07:55 +0700 Subject: [PATCH] Pin is-terminal to 0.4.7 to maintain MSRV. `is-terminal` 0.4.8 updated the MSRV to 1.63 and this crate is at 1.56, so we have to stick with 0.4.7. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index dd6e5843..5119c138 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ once_cell = "1.8.0" unicode-width = "0.1.9" owo-colors = { version = "3.0.0", optional = true } -is-terminal = { version = "0.4.0", optional = true } +is-terminal = { version = "=0.4.7", optional = true } # Locked at 0.4.7 due to MSRV textwrap = { version = "0.15.0", optional = true } supports-hyperlinks = { version = "2.0.0", optional = true } supports-color = { version = "2.0.0", optional = true }