diff --git a/datafusion/common/Cargo.toml b/datafusion/common/Cargo.toml index a24cbcc37210..af625447bd8f 100644 --- a/datafusion/common/Cargo.toml +++ b/datafusion/common/Cargo.toml @@ -41,7 +41,7 @@ pyarrow = ["pyo3"] arrow = { version = "12", features = ["prettyprint"] } avro-rs = { version = "0.13", features = ["snappy"], optional = true } cranelift-module = { version = "0.83.0", optional = true } -ordered-float = "2.10" +ordered-float = "3.0" parquet = { version = "12", features = ["arrow"], optional = true } pyo3 = { version = "0.16", optional = true } sqlparser = "0.16" diff --git a/datafusion/core/Cargo.toml b/datafusion/core/Cargo.toml index a119316a8b2b..da4e08e228e7 100644 --- a/datafusion/core/Cargo.toml +++ b/datafusion/core/Cargo.toml @@ -71,7 +71,7 @@ lazy_static = { version = "^1.4.0" } log = "^0.4" num-traits = { version = "0.2", optional = true } num_cpus = "1.13.0" -ordered-float = "2.10" +ordered-float = "3.0" parking_lot = "0.12" parquet = { version = "12", features = ["arrow"] } paste = "^1.0" diff --git a/datafusion/physical-expr/Cargo.toml b/datafusion/physical-expr/Cargo.toml index 2ae5fa319840..57bb0bf2c05c 100644 --- a/datafusion/physical-expr/Cargo.toml +++ b/datafusion/physical-expr/Cargo.toml @@ -49,7 +49,7 @@ datafusion-expr = { path = "../expr", version = "7.0.0" } hashbrown = { version = "0.12", features = ["raw"] } lazy_static = { version = "^1.4.0" } md-5 = { version = "^0.10.0", optional = true } -ordered-float = "2.10" +ordered-float = "3.0" paste = "^1.0" rand = "0.8" regex = { version = "^1.4.3", optional = true }