Skip to content

Commit 978131f

Browse files
chore(deps): bump the patch-minor group across 1 directory with 7 updates
Bumps the patch-minor group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [h2](https://github.com/hyperium/h2) | `0.4.13` | `0.4.14` | | [tokio](https://github.com/tokio-rs/tokio) | `1.52.1` | `1.52.3` | | [disruptor](https://github.com/nicholassm/disruptor-rs) | `4.1.0` | `4.2.0` | | [arrow-array](https://github.com/apache/arrow-rs) | `58.1.0` | `58.3.0` | | [pyo3](https://github.com/pyo3/pyo3) | `0.28.2` | `0.28.3` | | [arrow-ipc](https://github.com/apache/arrow-rs) | `58.1.0` | `58.3.0` | Updates `h2` from 0.4.13 to 0.4.14 - [Release notes](https://github.com/hyperium/h2/releases) - [Changelog](https://github.com/hyperium/h2/blob/master/CHANGELOG.md) - [Commits](hyperium/h2@v0.4.13...v0.4.14) Updates `tokio` from 1.52.1 to 1.52.3 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.52.1...tokio-1.52.3) Updates `disruptor` from 4.1.0 to 4.2.0 - [Release notes](https://github.com/nicholassm/disruptor-rs/releases) - [Commits](nicholassm/disruptor-rs@v4.1.0...v4.2.0) Updates `arrow-array` from 58.1.0 to 58.3.0 - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](apache/arrow-rs@58.1.0...58.3.0) Updates `arrow-schema` from 58.1.0 to 58.3.0 - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](apache/arrow-rs@58.1.0...58.3.0) Updates `pyo3` from 0.28.2 to 0.28.3 - [Release notes](https://github.com/pyo3/pyo3/releases) - [Changelog](https://github.com/PyO3/pyo3/blob/main/CHANGELOG.md) - [Commits](PyO3/pyo3@v0.28.2...v0.28.3) Updates `arrow-ipc` from 58.1.0 to 58.3.0 - [Release notes](https://github.com/apache/arrow-rs/releases) - [Changelog](https://github.com/apache/arrow-rs/blob/main/CHANGELOG.md) - [Commits](apache/arrow-rs@58.1.0...58.3.0) --- updated-dependencies: - dependency-name: arrow-array dependency-version: 58.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: arrow-ipc dependency-version: 58.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: arrow-schema dependency-version: 58.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: disruptor dependency-version: 4.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: h2 dependency-version: 0.4.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor - dependency-name: pyo3 dependency-version: 0.28.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor - dependency-name: tokio dependency-version: 1.52.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 139373a commit 978131f

4 files changed

Lines changed: 38 additions & 38 deletions

File tree

Cargo.lock

Lines changed: 29 additions & 29 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/thetadatadx/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ futures-core = "0.3"
7171
percent-encoding = "2"
7272

7373
# Async runtime
74-
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "fs"] }
74+
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "fs"] }
7575
tokio-stream = "0.1.18"
7676
tokio-rustls = "0.26.4"
7777
rustls = { version = "0.23.40", features = ["ring"] }
@@ -116,7 +116,7 @@ toml = { version = "1.1.2", optional = true }
116116
regex = "1.12.3"
117117

118118
# Lock-free ring buffer (LMAX Disruptor pattern) for FPSS event dispatch
119-
disruptor = "4.1.0"
119+
disruptor = "4.2.0"
120120

121121
# Lock-free MPMC bounded queue used by the pull-iter delivery mode
122122
# (`ThetaDataDxClient::start_streaming_iter`). The Disruptor consumer
@@ -134,7 +134,7 @@ polars = { version = "0.53", optional = true, default-features = false }
134134
# arrow-array + arrow-schema cover RecordBatch construction for the
135135
# optional `frames` feature only. Kept optional so the default dep
136136
# graph stays slim — FLATFILES does not pull in arrow.
137-
arrow-array = { version = "58.1.0", optional = true }
137+
arrow-array = { version = "58.3.0", optional = true }
138138
arrow-schema = { version = "58.1.0", optional = true }
139139
# JSON encoder for the FLATFILES `Format::Jsonl` output. One serde_json
140140
# Value per row; `to_writer` emits compact form, then we append `\n`.
@@ -183,7 +183,7 @@ toml = "1.1.2"
183183
# same patch as the Python SDK shim under `sdks/python/` so the
184184
# dev-dependency graph stays consistent. dev-only — never enters the
185185
# published crate graph.
186-
pyo3 = { version = "=0.28.2", features = ["auto-initialize"] }
186+
pyo3 = { version = "=0.28.3", features = ["auto-initialize"] }
187187

188188
[build-dependencies]
189189
# `prost-build` compiles `proto/mdds.proto` into Rust message types;

ffi/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ testing-panic-boundary = []
3232
[dependencies]
3333
thetadatadx = { path = "../crates/thetadatadx", features = ["arrow"] }
3434
tdbe = { version = "0.13.1", path = "../crates/tdbe" }
35-
tokio = { version = "1.52.1", features = ["rt-multi-thread"] }
36-
arrow-array = "58.1.0"
37-
arrow-ipc = "58.1.0"
35+
tokio = { version = "1.52.3", features = ["rt-multi-thread"] }
36+
arrow-array = "58.3.0"
37+
arrow-ipc = "58.3.0"
3838
arrow-schema = "58.1.0"
3939
# Used by the FPSS streaming callback silent-drop observability path
4040
# (see `tdx_fpss_dropped_events` / `tdx_unified_dropped_events`). Keep
@@ -48,4 +48,4 @@ tracing = "0.1.44"
4848
# consumer thread directly (`ffi_callback_queued_runs_on_consumer_thread`).
4949
# Pinned to the same version the core crate consumes through
5050
# `crates/thetadatadx/Cargo.toml`.
51-
disruptor = "4.1.0"
51+
disruptor = "4.2.0"

tools/cli/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ path = "src/main.rs"
2323
thetadatadx = { path = "../../crates/thetadatadx" }
2424
tdbe = { version = "0.13.1", path = "../../crates/tdbe" }
2525
clap = { version = "4.6.1", features = ["derive"] }
26-
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros"] }
26+
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros"] }
2727
sonic-rs = "0.5.8"
2828
comfy-table = "7.2.2"

0 commit comments

Comments
 (0)