Skip to content
Closed
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
66 changes: 33 additions & 33 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions crates/thetadatadx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@ live-tests = []
tdbe = { version = "0.13.1", path = "../tdbe" }

# gRPC + protobuf (tonic 0.14 extracted prost codec into tonic-prost)
tonic = { version = "=0.14.5", features = ["tls-ring", "tls-native-roots", "channel", "transport"] }
tonic-prost = "=0.14.5"
tonic = { version = "=0.14.6", features = ["tls-ring", "tls-native-roots", "channel", "transport"] }
tonic-prost = "=0.14.6"
prost = "=0.14.3"
prost-types = "=0.14.3"

# 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 @@ -112,7 +112,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.2.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 @@ -144,11 +144,11 @@ 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]
# tonic 0.14 extracted build integration into tonic-prost-build
tonic-prost-build = "=0.14.5"
tonic-prost-build = "=0.14.6"
prost-build = "=0.14.3"
regex = "1.12.3"
toml = "1.1.2"
Expand Down
6 changes: 3 additions & 3 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.2.0"
arrow-ipc = "58.2.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 Down
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"
Loading