From ddf1cced0dcf4ce8132fd6a8ce6bf45ae3398ee8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Jul 2026 20:14:36 +0000 Subject: [PATCH] deps: bump vgi-rpc from 0.11.0 to 0.12.0 Bumps [vgi-rpc](https://github.com/Query-farm/vgi-rpc-rust) from 0.11.0 to 0.12.0. - [Release notes](https://github.com/Query-farm/vgi-rpc-rust/releases) - [Changelog](https://github.com/Query-farm/vgi-rpc-rust/blob/main/CHANGELOG.md) - [Commits](https://github.com/Query-farm/vgi-rpc-rust/compare/v0.11.0...v0.12.0) --- updated-dependencies: - dependency-name: vgi-rpc dependency-version: 0.12.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 53 ++++++++++++++++++++++++++++++++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 51 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 140c5a4..16909b8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -870,7 +870,7 @@ dependencies = [ "tokio", "url", "vgi", - "vgi-rpc", + "vgi-rpc 0.12.0", ] [[package]] @@ -2883,7 +2883,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "vgi-rpc", + "vgi-rpc 0.11.0", ] [[package]] @@ -2918,11 +2918,47 @@ dependencies = [ "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.11.0", "windows-sys 0.59.0", "zstd", ] +[[package]] +name = "vgi-rpc" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "914f80427c457653e65d3852bea370e76ae5bc6e6d143702539cecf8febba336" +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.12.0", + "zstd", +] + [[package]] name = "vgi-rpc-macros" version = "0.11.0" @@ -2934,6 +2970,17 @@ dependencies = [ "syn", ] +[[package]] +name = "vgi-rpc-macros" +version = "0.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c14d83ef5fe336f4c2f588b2ca9d0798fff24f308d8e051c1efb5cfdf16fd51" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "wait-timeout" version = "0.2.1" diff --git a/Cargo.toml b/Cargo.toml index dd2250c..fa93200 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ repository = "https://github.com/Query-farm/vgi-fixedformat" # writes. Keep arrow/vgi-rpc in lockstep with vgi's pins so a single arrow/vgi-rpc # resolves. vgi = "0.17.0" -vgi-rpc = { version = "0.11.0", default-features = false, features = ["macros", "http"] } +vgi-rpc = { version = "0.12.0", default-features = false, features = ["macros", "http"] } arrow = { version = "59", default-features = false, features = ["ipc"] } arrow-array = "59" arrow-buffer = "59"