bump convergence to support decimal type (#395)

This commit is contained in:
QP Hou 2025-05-04 21:28:56 -07:00 committed by GitHub
parent 1607c9a452
commit 790756329e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 11 additions and 7 deletions

14
Cargo.lock generated
View File

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

View File

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