From 45a8ec8a4076a6358e64e512e399f08288c6f0fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 18 Aug 2026 20:24:28 +0000 Subject: [PATCH] deps: bump vgi from 0.24.0 to 0.29.0 Bumps [vgi](https://github.com/Query-farm/vgi-rust) from 0.24.0 to 0.29.0. - [Release notes](https://github.com/Query-farm/vgi-rust/releases) - [Commits](https://github.com/Query-farm/vgi-rust/compare/v0.24.0...v0.29.0) --- updated-dependencies: - dependency-name: vgi dependency-version: 0.29.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 +++++++++++++++++++++++++++++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 53 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 352dda6..3491976 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1964,7 +1964,7 @@ dependencies = [ "proptest", "sourcemap", "vgi", - "vgi-rpc", + "vgi-rpc 0.16.0", ] [[package]] @@ -2266,9 +2266,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vgi" -version = "0.24.0" +version = "0.29.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a92151a61020f3c53ca05f131952c8c711a7b8dead3aa5c2efbdcd01bab24f" +checksum = "3aa4398bf82264c7ebab474932b5ccbf3969f0379c545a954511fdeb6dbe6aef" dependencies = [ "arrow", "arrow-arith", @@ -2288,7 +2288,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "vgi-rpc", + "vgi-rpc 0.21.1", ] [[package]] @@ -2296,6 +2296,42 @@ name = "vgi-rpc" version = "0.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "65650405da09db5904a510d22ada983f9d0eab4a91597c6d60b8fd0c86cae8fd" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "axum", + "base64", + "bincode", + "bytes", + "chacha20poly1305", + "chrono", + "flatbuffers", + "flate2", + "hmac", + "rand 0.8.6", + "rust_decimal", + "serde", + "serde_json", + "sha2", + "thiserror", + "tokio", + "tower-http", + "tracing", + "url", + "vgi-rpc-macros 0.16.0", + "zstd", +] + +[[package]] +name = "vgi-rpc" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58ac9af5f440337fd2f7745b15137ad689dd6d9aa2dba5f2bb043a651700143c" dependencies = [ "arrow-array", "arrow-buffer", @@ -2324,7 +2360,7 @@ dependencies = [ "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.21.1", "windows-sys 0.59.0", "zstd", ] @@ -2340,6 +2376,17 @@ dependencies = [ "syn", ] +[[package]] +name = "vgi-rpc-macros" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1be75303e4b4feb1b6f97783dc1f45a16c890c4e7c74674379a18f6500717c73" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "vsimd" version = "0.8.0" diff --git a/Cargo.toml b/Cargo.toml index efba61b..592ee3e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ repository = "https://github.com/Query-farm/vgi-sourcemap" # build takes the SDK's real defaults (`sqlite` + `transport-http`), while the # wasm build must NOT — tokio/mio/axum and bundled SQLite do not compile for # wasm32, and the browser transport serves over a byte channel rather than HTTP. -vgi = { version = "0.24", default-features = false } +vgi = { version = "0.29", default-features = false } vgi-rpc = { version = "0.16", default-features = false, features = ["macros"] } arrow-array = "59" arrow-buffer = "59"