From 40b7b35ee67b91f8d09a0f2bcbf970a57af7d7cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 31 Aug 2026 06:16:28 +0000 Subject: [PATCH] deps: Bump vgi from 0.29.0 to 0.31.0 Bumps [vgi](https://github.com/Query-farm/vgi-rust) from 0.29.0 to 0.31.0. - [Release notes](https://github.com/Query-farm/vgi-rust/releases) - [Commits](https://github.com/Query-farm/vgi-rust/compare/v0.29.0...v0.31.0) --- updated-dependencies: - dependency-name: vgi dependency-version: 0.31.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 72 ++++++++++++++++++++++++++++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 68 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0045793..adaca57 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1948,7 +1948,7 @@ dependencies = [ "env_logger", "log", "vgi", - "vgi-rpc", + "vgi-rpc 0.21.0", ] [[package]] @@ -1999,9 +1999,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vgi" -version = "0.29.0" +version = "0.31.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3aa4398bf82264c7ebab474932b5ccbf3969f0379c545a954511fdeb6dbe6aef" +checksum = "dc59ddc9b7f2e4d587cd83437fafd973ee95934f9466e43ce1458a071ff0981c" dependencies = [ "arrow", "arrow-arith", @@ -2020,8 +2020,22 @@ dependencies = [ "rusqlite", "serde", "serde_json", + "sha2", "tokio", - "vgi-rpc", + "vgi-protocol", + "vgi-rpc 0.23.3", +] + +[[package]] +name = "vgi-protocol" +version = "0.31.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7147196877547feefb66969adad7f69fb230cdcf4a42e176a1041a0eee4634c" +dependencies = [ + "arrow-array", + "arrow-ipc", + "arrow-schema", + "vgi-rpc 0.23.3", ] [[package]] @@ -2029,6 +2043,42 @@ name = "vgi-rpc" version = "0.21.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4832475bde2c889a9c721bdda99a67754e51b24e660334cebdb4e4f6321220d1" +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", + "rust_decimal", + "serde", + "serde_json", + "sha2", + "thiserror", + "tokio", + "tower-http", + "tracing", + "url", + "vgi-rpc-macros 0.21.0", + "zstd", +] + +[[package]] +name = "vgi-rpc" +version = "0.23.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20a5073e891d5f6eca27feb167b568575dcf3a4deab517a9282800c97199263" dependencies = [ "arrow-array", "arrow-buffer", @@ -2052,12 +2102,13 @@ dependencies = [ "serde", "serde_json", "sha2", + "socket2", "thiserror", "tokio", "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.23.3", "windows-sys 0.59.0", "zstd", ] @@ -2073,6 +2124,17 @@ dependencies = [ "syn", ] +[[package]] +name = "vgi-rpc-macros" +version = "0.23.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca045fa5899e4ec106ec2fd127eac15558cb5523d9458819b9bf8b150463cd87" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "wasi" version = "0.11.1+wasi-snapshot-preview1" diff --git a/Cargo.toml b/Cargo.toml index 3f6d9b5..e57835d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ repository = "https://github.com/Query-farm/vgi-units" # 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.29", default-features = false } +vgi = { version = "0.31", default-features = false } vgi-rpc = { version = "0.21", default-features = false, features = ["macros"] } arrow-array = "59" arrow-buffer = "59"