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
22 changes: 11 additions & 11 deletions 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 crates/thetadatadx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ 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.2", 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 @@ -105,7 +105,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
2 changes: 1 addition & 1 deletion ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ testing-panic-boundary = []
[dependencies]
thetadatadx = { path = "../crates/thetadatadx" }
tdbe = { version = "0.12.9", path = "../crates/tdbe" }
tokio = { version = "1.52.1", features = ["rt-multi-thread"] }
tokio = { version = "1.52.2", features = ["rt-multi-thread"] }
# Used by the FPSS streaming callback silent-drop observability path
# (see `tdx_fpss_dropped_events` / `tdx_unified_dropped_events`). Keep
# pinned to the same major/minor as the parent crate so the target that
Expand Down
2 changes: 1 addition & 1 deletion tools/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ thetadatadx = { path = "../../crates/thetadatadx" }
tdbe = { version = "0.12.9", path = "../../crates/tdbe" }
json_canon = { version = "0.1.0", path = "../../crates/json_canon" }
clap = { version = "4.6.1", features = ["derive"] }
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros"] }
tokio = { version = "1.52.2", features = ["rt-multi-thread", "macros"] }
sonic-rs = "0.5.8"
comfy-table = "7.2.2"
Loading