From b64252d4fdbecaefce5db282cddb43a5653e1c9c Mon Sep 17 00:00:00 2001 From: Weston Pace Date: Tue, 8 Jul 2025 08:36:04 -0700 Subject: [PATCH] chore: don't require exact version of half (#2489) I can't find any reason for pinning this dependency and the fact that it is pinned can be kind of annoying to use downstream (e.g. datafusion currently requires >= 2.6). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 83572aa3..03b9b08f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,7 +46,7 @@ datafusion-execution = "48.0" datafusion-expr = "48.0" datafusion-physical-plan = "48.0" env_logger = "0.11" -half = { "version" = "=2.6.0", default-features = false, features = [ +half = { "version" = "2.6.0", default-features = false, features = [ "num-traits", ] } futures = "0"