From aa400ef09cbe452d8094ebb60f54d6acf05f04c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Jun 2026 20:15:01 +0000 Subject: [PATCH] deps: bump vgi-rpc from 0.2.0 to 0.3.0 Bumps [vgi-rpc](https://github.com/Query-farm/vgi-rpc-rust) from 0.2.0 to 0.3.0. - [Changelog](https://github.com/Query-farm/vgi-rpc-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/Query-farm/vgi-rpc-rust/compare/v0.2.0...v0.3.0) --- updated-dependencies: - dependency-name: vgi-rpc dependency-version: 0.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 52 +++++++++++++++++++++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 50 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4051117..9b79c2b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -681,7 +681,7 @@ dependencies = [ "glob", "log", "vgi", - "vgi-rpc", + "vgi-rpc 0.3.0", ] [[package]] @@ -2041,7 +2041,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "vgi-rpc", + "vgi-rpc 0.2.0", ] [[package]] @@ -2075,7 +2075,42 @@ dependencies = [ "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.2.0", + "zstd", +] + +[[package]] +name = "vgi-rpc" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fae7e4158c10440c0509392395c8fc8f1be6f3c4918aea1c5e8f4e89858472fc" +dependencies = [ + "arrow-array", + "arrow-buffer", + "arrow-cast", + "arrow-data", + "arrow-ipc", + "arrow-schema", + "arrow-select", + "axum", + "base64", + "bincode", + "bytes", + "chacha20poly1305", + "chrono", + "flatbuffers", + "hmac", + "rand 0.8.6", + "rust_decimal", + "serde", + "serde_json", + "sha2", + "thiserror", + "tokio", + "tower-http", + "tracing", + "url", + "vgi-rpc-macros 0.3.0", "zstd", ] @@ -2090,6 +2125,17 @@ dependencies = [ "syn", ] +[[package]] +name = "vgi-rpc-macros" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ef9b8a83c3289066ee0255e4615e9e9f5ec0e63527784b8c6bd6d988bd715b0" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "wait-timeout" version = "0.2.1" diff --git a/Cargo.toml b/Cargo.toml index 55c5752..d5fafcd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ authors = ["Query Farm LLC "] # arrow 58 transitively; keep arrow/vgi-rpc here in lockstep with vgi's pins so a # single arrow/vgi-rpc resolves. vgi = "0.5.0" -vgi-rpc = { version = "0.2.0", default-features = false, features = ["macros", "http"] } +vgi-rpc = { version = "0.3.0", default-features = false, features = ["macros", "http"] } arrow = { version = "58", default-features = false, features = ["ipc"] } arrow-array = "58" arrow-buffer = "58"