From 667f0c99fed1fe6a86463016977328497b69483a Mon Sep 17 00:00:00 2001 From: Zach Schuermann Date: Thu, 28 Aug 2025 16:51:57 -0700 Subject: [PATCH] pin comfy-table to 7.1.2 --- arrow-cast/Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arrow-cast/Cargo.toml b/arrow-cast/Cargo.toml index 49145cf987f9..32bbd35e811d 100644 --- a/arrow-cast/Cargo.toml +++ b/arrow-cast/Cargo.toml @@ -50,7 +50,8 @@ half = { version = "2.1", default-features = false } num = { version = "0.4", default-features = false, features = ["std"] } lexical-core = { version = "1.0", default-features = false, features = ["write-integers", "write-floats", "parse-integers", "parse-floats"] } atoi = "2.0.0" -comfy-table = { version = "7.0", optional = true, default-features = false } +# unpin after MSRV bump to 1.85 +comfy-table = { version = "=7.1.2", optional = true, default-features = false } base64 = "0.22" ryu = "1.0.16"