From 790756329e6a3b66bf36a74f75520c3c4a20ba22 Mon Sep 17 00:00:00 2001 From: QP Hou Date: Sun, 4 May 2025 21:28:56 -0700 Subject: [PATCH] bump convergence to support decimal type (#395) --- Cargo.lock | 14 +++++++++----- roapi/Cargo.toml | 4 ++-- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d9d978b..0783951 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2021,28 +2021,32 @@ checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6" [[package]] name = "convergence" version = "0.16.0" -source = "git+https://github.com/roapi/convergence.git?rev=5ddae0d849710eabb91118657758f8db17ac1886#5ddae0d849710eabb91118657758f8db17ac1886" +source = "git+https://github.com/roapi/convergence.git?rev=92dc4c4b4dac87afeb193e416399767911b67b4f#92dc4c4b4dac87afeb193e416399767911b67b4f" dependencies = [ "async-trait", "bytes", "chrono", "futures", + "rust_decimal", "sqlparser 0.46.0", "thiserror 1.0.69", "tokio", + "tokio-postgres", "tokio-util", ] [[package]] name = "convergence-arrow" version = "0.16.0" -source = "git+https://github.com/roapi/convergence.git?rev=5ddae0d849710eabb91118657758f8db17ac1886#5ddae0d849710eabb91118657758f8db17ac1886" +source = "git+https://github.com/roapi/convergence.git?rev=92dc4c4b4dac87afeb193e416399767911b67b4f#92dc4c4b4dac87afeb193e416399767911b67b4f" dependencies = [ "async-trait", "chrono", "convergence", "datafusion", + "rust_decimal", "tokio", + "tokio-postgres", ] [[package]] @@ -4735,7 +4739,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34" dependencies = [ "cfg-if", - "windows-targets 0.52.6", + "windows-targets 0.48.5", ] [[package]] @@ -6629,9 +6633,9 @@ dependencies = [ [[package]] name = "rust_decimal" -version = "1.36.0" +version = "1.37.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b082d80e3e3cc52b2ed634388d436fe1f4de6af5786cc2de9ba9737527bdf555" +checksum = "faa7de2ba56ac291bd90c6b9bece784a52ae1411f9506544b3eae36dd2356d50" dependencies = [ "arrayvec", "borsh", diff --git a/roapi/Cargo.toml b/roapi/Cargo.toml index e8f6757..e9f9a14 100644 --- a/roapi/Cargo.toml +++ b/roapi/Cargo.toml @@ -60,12 +60,12 @@ mime_guess = { version = "2", optional = true } [dependencies.convergence] version = "0" git = "https://github.com/roapi/convergence.git" -rev = "5ddae0d849710eabb91118657758f8db17ac1886" +rev = "92dc4c4b4dac87afeb193e416399767911b67b4f" [dependencies.convergence-arrow] version = "0" git = "https://github.com/roapi/convergence.git" -rev = "5ddae0d849710eabb91118657758f8db17ac1886" +rev = "92dc4c4b4dac87afeb193e416399767911b67b4f" [features] default = ["rustls", "snmalloc"]