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).
This commit is contained in:
Weston Pace
2025-07-08 08:36:04 -07:00
committed by GitHub
parent 6fc006072c
commit b64252d4fd

View File

@@ -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"