Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 29 additions & 29 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions crates/thetadatadx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ futures-core = "0.3"
percent-encoding = "2"

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

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

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

[build-dependencies]
# `prost-build` compiles `proto/mdds.proto` into Rust message types;
Expand Down
8 changes: 4 additions & 4 deletions ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ testing-panic-boundary = []
[dependencies]
thetadatadx = { path = "../crates/thetadatadx", features = ["arrow"] }
tdbe = { version = "0.13.1", path = "../crates/tdbe" }
tokio = { version = "1.52.1", features = ["rt-multi-thread"] }
arrow-array = "58.1.0"
arrow-ipc = "58.1.0"
tokio = { version = "1.52.3", features = ["rt-multi-thread"] }
arrow-array = "58.3.0"
arrow-ipc = "58.3.0"
arrow-schema = "58.1.0"
# Used by the FPSS streaming callback silent-drop observability path
# (see `tdx_fpss_dropped_events` / `tdx_unified_dropped_events`). Keep
Expand All @@ -48,4 +48,4 @@ tracing = "0.1.44"
# consumer thread directly (`ffi_callback_queued_runs_on_consumer_thread`).
# Pinned to the same version the core crate consumes through
# `crates/thetadatadx/Cargo.toml`.
disruptor = "4.1.0"
disruptor = "4.2.0"
20 changes: 10 additions & 10 deletions sdks/python/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions sdks/typescript/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion tools/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ path = "src/main.rs"
thetadatadx = { path = "../../crates/thetadatadx" }
tdbe = { version = "0.13.1", path = "../../crates/tdbe" }
clap = { version = "4.6.1", features = ["derive"] }
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.52.3", features = ["rt-multi-thread", "macros"] }
sonic-rs = "0.5.8"
comfy-table = "7.2.2"
4 changes: 2 additions & 2 deletions tools/mcp/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tools/server/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading