diff --git a/Cargo.lock b/Cargo.lock index eb8532570c..5154240069 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1159,7 +1159,7 @@ dependencies = [ "iox_time", "num_cpus", "observability_deps", - "ordered-float 2.10.0", + "ordered-float 3.0.0", "percent-encoding", "regex", "siphasher", @@ -1464,7 +1464,7 @@ dependencies = [ "iox_time", "mutable_batch", "mutable_batch_lp", - "ordered-float 2.10.0", + "ordered-float 3.0.0", "regex", "schema", "trace", @@ -3881,6 +3881,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "ordered-float" +version = "3.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bcbab4bfea7a59c2c0fe47211a1ac4e3e96bea6eb446d704f310bc5c732ae2" +dependencies = [ + "num-traits", +] + [[package]] name = "os_str_bytes" version = "6.0.0" @@ -4323,7 +4332,7 @@ dependencies = [ "datafusion_util", "itertools", "observability_deps", - "ordered-float 2.10.0", + "ordered-float 3.0.0", "query_functions", "schema", "serde_json", diff --git a/data_types/Cargo.toml b/data_types/Cargo.toml index f37049359d..61bf4a7158 100644 --- a/data_types/Cargo.toml +++ b/data_types/Cargo.toml @@ -10,7 +10,7 @@ readme = "README.md" bytes = "1.0" num_cpus = "1.13.0" observability_deps = { path = "../observability_deps" } -ordered-float = "2" +ordered-float = "3" percent-encoding = "2.1.0" regex = "1" siphasher = "0.3" diff --git a/dml/Cargo.toml b/dml/Cargo.toml index bff3205644..25a62fb2cd 100644 --- a/dml/Cargo.toml +++ b/dml/Cargo.toml @@ -9,7 +9,7 @@ arrow_util = { path = "../arrow_util" } data_types = { path = "../data_types" } hashbrown = "0.12" mutable_batch = { path = "../mutable_batch" } -ordered-float = "2" +ordered-float = "3" schema = { path = "../schema" } iox_time = { path = "../iox_time" } trace = { path = "../trace" } diff --git a/predicate/Cargo.toml b/predicate/Cargo.toml index 25867a0a92..e6f32385cb 100644 --- a/predicate/Cargo.toml +++ b/predicate/Cargo.toml @@ -11,7 +11,7 @@ datafusion = { path = "../datafusion" } datafusion_util = { path = "../datafusion_util" } itertools = "0.10" observability_deps = { path = "../observability_deps" } -ordered-float = "2" +ordered-float = "3" query_functions = { path = "../query_functions"} schema = { path = "../schema" } serde_json = "1.0.79"