From f9b4cdf396e5151a390879e9c84979d1937992c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Sep 2026 10:08:22 +0000 Subject: [PATCH] deps: Bump vgi from 0.24.0 to 0.32.0 Bumps [vgi](https://github.com/Query-farm/vgi-rust) from 0.24.0 to 0.32.0. - [Release notes](https://github.com/Query-farm/vgi-rust/releases) - [Commits](https://github.com/Query-farm/vgi-rust/compare/v0.24.0...v0.32.0) --- updated-dependencies: - dependency-name: vgi dependency-version: 0.32.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 5e0eeb4..7ef8131 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -467,7 +467,7 @@ dependencies = [ "log", "rxing", "vgi", - "vgi-rpc", + "vgi-rpc 0.16.0", ] [[package]] @@ -2969,9 +2969,9 @@ checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" [[package]] name = "vgi" -version = "0.24.0" +version = "0.32.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "75a92151a61020f3c53ca05f131952c8c711a7b8dead3aa5c2efbdcd01bab24f" +checksum = "8282c3be83a37c07dae930c061b9a79abe28d4d682d9493f8473df1a53c9970d" dependencies = [ "arrow", "arrow-arith", @@ -2990,8 +2990,22 @@ dependencies = [ "rusqlite", "serde", "serde_json", + "sha2", "tokio", - "vgi-rpc", + "vgi-protocol", + "vgi-rpc 0.23.3", +] + +[[package]] +name = "vgi-protocol" +version = "0.32.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb707cb8ea634d27153be9e11f67950d1c5face06da7b9eb332f420f0301be6e" +dependencies = [ + "arrow-array", + "arrow-ipc", + "arrow-schema", + "vgi-rpc 0.23.3", ] [[package]] @@ -2999,6 +3013,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", + "rust_decimal", + "serde", + "serde_json", + "sha2", + "thiserror 2.0.18", + "tokio", + "tower-http", + "tracing", + "url", + "vgi-rpc-macros 0.16.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", @@ -3022,12 +3072,13 @@ dependencies = [ "serde", "serde_json", "sha2", + "socket2", "thiserror 2.0.18", "tokio", "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.23.3", "windows-sys 0.59.0", "zstd", ] @@ -3043,6 +3094,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 222cc95..c62775f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ repository = "https://github.com/Query-farm/vgi-barcode" # tokio/mio/axum and bundled SQLite do not compile for wasm32, and the browser # transport serves over a byte channel rather than HTTP. Features are additive, # and the two are behind mutually-exclusive target cfgs. -vgi = { version = "0.24", default-features = false } +vgi = { version = "0.32", default-features = false } vgi-rpc = { version = "0.16", default-features = false, features = ["macros"] } arrow-array = "59" arrow-buffer = "59"