diff --git a/Cargo.lock b/Cargo.lock index f01d39e..bd32695 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -503,7 +503,7 @@ dependencies = [ "env_logger", "log", "vgi", - "vgi-rpc", + "vgi-rpc 0.22.0", ] [[package]] @@ -2043,7 +2043,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "vgi-rpc", + "vgi-rpc 0.16.0", ] [[package]] @@ -2079,11 +2079,47 @@ dependencies = [ "tower-http", "tracing", "url", - "vgi-rpc-macros", + "vgi-rpc-macros 0.16.0", "windows-sys 0.59.0", "zstd", ] +[[package]] +name = "vgi-rpc" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "12002941f96418ed002926dab2352033e28043ce8e3f7b16fbf897e7b499ca4c" +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.22.0", + "zstd", +] + [[package]] name = "vgi-rpc-macros" version = "0.16.0" @@ -2095,6 +2131,17 @@ dependencies = [ "syn", ] +[[package]] +name = "vgi-rpc-macros" +version = "0.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ad1099d1e29287d2ceaed53e3f3941966c800fcec4c97ddb8a9442183babd3b7" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "wasi" version = "0.11.1+wasi-snapshot-preview1" diff --git a/Cargo.toml b/Cargo.toml index 10b22c7..3bf1f20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,7 @@ repository = "https://github.com/Query-farm/vgi-charset" # 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-rpc = { version = "0.16", default-features = false, features = ["macros"] } +vgi-rpc = { version = "0.22", default-features = false, features = ["macros"] } arrow-array = "59" arrow-buffer = "59" arrow-schema = "59"