From 0270081f8dffe67cdb796fd106883e75ed226be3 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Fri, 19 Jun 2026 16:24:03 -0700 Subject: [PATCH] chore(deps): upgrade hotdata SDK 0.3.1 -> 0.4.0 0.4.0 removes the datasets API/models and adds a usage API. The CLI already dropped its datasets surface in #166, so the removal is a no-op here and the new usage API is simply unused. No source changes needed. Verified: `cargo build`/`clippy` clean, full suite (206) green, and a production smoke test (auth status, databases list, an arrow-decoded query) against workspace AgentRyan succeeds. --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d97075e..57d3e01 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1165,9 +1165,9 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hotdata" -version = "0.3.1" +version = "0.4.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c54b66bbff35134c3c592aa55694015d282a1cbcdb549eaca6742b3ba35c12f1" +checksum = "a79ce05333e09411029842117c625b5350d939697a450b7b6e4cc7251b87c28b" dependencies = [ "arrow-array", "arrow-ipc", diff --git a/Cargo.toml b/Cargo.toml index 2d4b786..de49a86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" # behind a shared multi-thread tokio runtime. The `arrow` feature backs result # decode; `upload_stream` carries `content_length` (sized body, not chunked, so # the server can fast-fail an oversized upload — see src/sdk.rs::Api::upload_stream). -hotdata = { version = "0.3.1", features = ["arrow"] } +hotdata = { version = "0.4.0", features = ["arrow"] } # Shared multi-thread runtime for the sync wrapper; block_on is called # concurrently from rayon worker threads (see src/indexes.rs). `sync` backs the # mpsc channel that bridges the blocking upload reader into an async byte stream.