diff --git a/Cargo.lock b/Cargo.lock index 1002d8061d9b4..e992e7793facf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5094,7 +5094,7 @@ dependencies = [ "tantivy-common", "tantivy-fst", "tantivy-jieba", - "thrift", + "thrift 0.23.0", "tokio", "typetag", "uuid", @@ -5240,7 +5240,7 @@ dependencies = [ "databend-common-pipeline-transforms", "databend-common-storage", "databend-common-users", - "databend-meta-client 260205.14.0", + "databend-meta-client 260205.13.1", "databend-storages-common-table-meta", "databend_educe", "futures", @@ -13409,6 +13409,15 @@ dependencies = [ "num-traits", ] +[[package]] +name = "ordered-float" +version = "3.9.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f1e1c390732d15f1d48471625cd92d154e66db2c56645e29a9cd26f4699f72dc" +dependencies = [ + "num-traits", +] + [[package]] name = "ordered-float" version = "4.6.0" @@ -13630,7 +13639,7 @@ dependencies = [ "seq-macro", "simdutf8", "snap", - "thrift", + "thrift 0.17.0", "tokio", "twox-hash 2.1.0", "zstd 0.13.3", @@ -13664,7 +13673,7 @@ dependencies = [ "seq-macro", "simdutf8", "snap", - "thrift", + "thrift 0.17.0", "tokio", "twox-hash 2.1.0", "zstd 0.13.3", @@ -18002,9 +18011,21 @@ checksum = "7e54bc85fc7faa8bc175c4bab5b92ba8d9a3ce893d0e9f42cc455c8ab16a9e09" dependencies = [ "byteorder", "integer-encoding 3.0.4", - "log", "ordered-float 2.10.1", +] + +[[package]] +name = "thrift" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f650151e44bb59950b3adf32de0064813d1148f34f4884b7f5b539f29596859" +dependencies = [ + "byteorder", + "integer-encoding 3.0.4", + "log", + "ordered-float 3.9.2", "threadpool", + "uuid", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index b99f45fdec5c1..8993435f679cc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -485,7 +485,7 @@ test-harness = "0.3.0" testcontainers = "0.23" testcontainers-modules = { version = "0.11.5", features = ["mysql", "redis"] } thiserror = { version = "1" } -thrift = "0.17.0" +thrift = "0.23.0" tikv-jemalloc-ctl = { version = "0.6.0", features = ["use_std", "stats"] } tikv-jemalloc-sys = "0.6.0" tokio = { version = "1.52.3", features = ["full"] }