mirror of
https://github.com/roapi/roapi.git
synced 2026-06-11 21:00:56 +08:00
bump convergence for timezone support (#399)
Some checks failed
build / build (push) Has been cancelled
build / build_ui (push) Has been cancelled
build / database_test (push) Has been cancelled
build / object_store_memory_test (push) Has been cancelled
build / object_store_direct_test (push) Has been cancelled
build / openssl_build (push) Has been cancelled
build / mac_cross_build (push) Has been cancelled
build / Docker Image Build (push) Has been cancelled
columnq-cli release / Validate git tag (push) Has been cancelled
roapi release / Validate git tag (push) Has been cancelled
columnq-cli release / macos (push) Has been cancelled
columnq-cli release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / PyPI Release (push) Has been cancelled
roapi release / macos (push) Has been cancelled
roapi release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / PyPI Release (push) Has been cancelled
roapi release / Docker Image Release (push) Has been cancelled
Scheduled security audit / audit (push) Has been cancelled
Some checks failed
build / build (push) Has been cancelled
build / build_ui (push) Has been cancelled
build / database_test (push) Has been cancelled
build / object_store_memory_test (push) Has been cancelled
build / object_store_direct_test (push) Has been cancelled
build / openssl_build (push) Has been cancelled
build / mac_cross_build (push) Has been cancelled
build / Docker Image Build (push) Has been cancelled
columnq-cli release / Validate git tag (push) Has been cancelled
roapi release / Validate git tag (push) Has been cancelled
columnq-cli release / macos (push) Has been cancelled
columnq-cli release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / PyPI Release (push) Has been cancelled
roapi release / macos (push) Has been cancelled
roapi release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / PyPI Release (push) Has been cancelled
roapi release / Docker Image Release (push) Has been cancelled
Scheduled security audit / audit (push) Has been cancelled
bump convergence
This commit is contained in:
parent
0b7c9f8e1f
commit
436edd54fc
16
Cargo.lock
generated
16
Cargo.lock
generated
@ -2067,14 +2067,14 @@ checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
||||
[[package]]
|
||||
name = "convergence"
|
||||
version = "0.17.1"
|
||||
source = "git+https://github.com/roapi/convergence.git?rev=5509d87bf84be3eb72653a007759c05c0a0831de#5509d87bf84be3eb72653a007759c05c0a0831de"
|
||||
source = "git+https://github.com/returnString/convergence?rev=1ac88ac166a4bde340de3a5d30ba9d017eaa006d#1ac88ac166a4bde340de3a5d30ba9d017eaa006d"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"bytes",
|
||||
"chrono",
|
||||
"futures",
|
||||
"rust_decimal",
|
||||
"sqlparser 0.55.0",
|
||||
"sqlparser 0.56.0",
|
||||
"thiserror 2.0.12",
|
||||
"tokio",
|
||||
"tokio-postgres",
|
||||
@ -2084,7 +2084,7 @@ dependencies = [
|
||||
[[package]]
|
||||
name = "convergence-arrow"
|
||||
version = "0.17.1"
|
||||
source = "git+https://github.com/roapi/convergence.git?rev=5509d87bf84be3eb72653a007759c05c0a0831de#5509d87bf84be3eb72653a007759c05c0a0831de"
|
||||
source = "git+https://github.com/returnString/convergence?rev=1ac88ac166a4bde340de3a5d30ba9d017eaa006d#1ac88ac166a4bde340de3a5d30ba9d017eaa006d"
|
||||
dependencies = [
|
||||
"async-trait",
|
||||
"chrono",
|
||||
@ -7771,6 +7771,16 @@ dependencies = [
|
||||
"sqlparser_derive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sqlparser"
|
||||
version = "0.56.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e68feb51ffa54fc841e086f58da543facfe3d7ae2a60d69b0a8cbbd30d16ae8d"
|
||||
dependencies = [
|
||||
"log",
|
||||
"recursive",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "sqlparser_derive"
|
||||
version = "0.3.0"
|
||||
|
||||
@ -59,13 +59,13 @@ mime_guess = { version = "2", optional = true }
|
||||
|
||||
[dependencies.convergence]
|
||||
version = "0"
|
||||
git = "https://github.com/roapi/convergence.git"
|
||||
rev = "5509d87bf84be3eb72653a007759c05c0a0831de"
|
||||
git = "https://github.com/returnString/convergence"
|
||||
rev = "1ac88ac166a4bde340de3a5d30ba9d017eaa006d"
|
||||
|
||||
[dependencies.convergence-arrow]
|
||||
version = "0"
|
||||
git = "https://github.com/roapi/convergence.git"
|
||||
rev = "5509d87bf84be3eb72653a007759c05c0a0831de"
|
||||
git = "https://github.com/returnString/convergence"
|
||||
rev = "1ac88ac166a4bde340de3a5d30ba9d017eaa006d"
|
||||
|
||||
[features]
|
||||
default = ["rustls", "snmalloc"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user