diff --git a/Cargo.lock b/Cargo.lock index 352dda6..82b1863 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1964,7 +1964,7 @@ dependencies = [ "proptest", "sourcemap", "vgi", - "vgi-rpc", + "vgi-rpc 0.23.3", ] [[package]] @@ -2288,7 +2288,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "vgi-rpc", + "vgi-rpc 0.16.0", ] [[package]] @@ -2324,11 +2324,48 @@ 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.23.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c20a5073e891d5f6eca27feb167b568575dcf3a4deab517a9282800c97199263" +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", + "socket2", + "thiserror", + "tokio", + "tower-http", + "tracing", + "url", + "vgi-rpc-macros 0.23.3", + "zstd", +] + [[package]] name = "vgi-rpc-macros" version = "0.16.0" @@ -2340,6 +2377,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 = "vsimd" version = "0.8.0" diff --git a/Cargo.toml b/Cargo.toml index efba61b..7996343 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ repository = "https://github.com/Query-farm/vgi-sourcemap" # 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.23", default-features = false, features = ["macros"] } arrow-array = "59" arrow-buffer = "59" arrow-schema = "59"