diff --git a/Cargo.lock b/Cargo.lock index a383cb06..b531df6a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -138,9 +138,9 @@ dependencies = [ [[package]] name = "arrow-array" -version = "58.1.0" +version = "58.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "772bd34cacdda8baec9418d80d23d0fb4d50ef0735685bd45158b83dfeb6e62d" +checksum = "841321891f247aa86c6112c80d83d89cb36e0addd020fa2425085b8eb6c3f579" dependencies = [ "ahash", "arrow-buffer", @@ -148,7 +148,7 @@ dependencies = [ "arrow-schema", "chrono", "half", - "hashbrown 0.16.1", + "hashbrown 0.17.0", "num-complex", "num-integer", "num-traits", @@ -156,9 +156,9 @@ dependencies = [ [[package]] name = "arrow-buffer" -version = "58.1.0" +version = "58.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "898f4cf1e9598fdb77f356fdf2134feedfd0ee8d5a4e0a5f573e7d0aec16baa4" +checksum = "f955dfb73fae000425f49c8226d2044dab60fb7ad4af1e24f961756354d996c9" dependencies = [ "bytes", "half", @@ -168,9 +168,9 @@ dependencies = [ [[package]] name = "arrow-data" -version = "58.1.0" +version = "58.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "42d10beeab2b1c3bb0b53a00f7c944a178b622173a5c7bcabc3cb45d90238df4" +checksum = "db3b5846209775b6dc8056d77ff9a032b27043383dd5488abd0b663e265b9373" dependencies = [ "arrow-buffer", "arrow-schema", @@ -181,9 +181,9 @@ dependencies = [ [[package]] name = "arrow-schema" -version = "58.1.0" +version = "58.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c30a1365d7a7dc50cc847e54154e6af49e4c4b0fddc9f607b687f29212082743" +checksum = "18aa020f6bc8e5201dcd2d4b7f98c68f8a410ef37128263243e6ff2a47a67d4f" [[package]] name = "asn1-rs" @@ -3290,9 +3290,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.52.1" +version = "1.52.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b67dee974fe86fd92cc45b7a95fdd2f99a36a6d7b0d431a231178d3d670bbcc6" +checksum = "110a78583f19d5cdb2c5ccf321d1290344e71313c6c37d43520d386027d18386" dependencies = [ "bytes", "libc", diff --git a/crates/thetadatadx/Cargo.toml b/crates/thetadatadx/Cargo.toml index 05fe06d7..ef2a2cec 100644 --- a/crates/thetadatadx/Cargo.toml +++ b/crates/thetadatadx/Cargo.toml @@ -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"] } @@ -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`. diff --git a/ffi/Cargo.toml b/ffi/Cargo.toml index 2c8d3d79..782d0e2c 100644 --- a/ffi/Cargo.toml +++ b/ffi/Cargo.toml @@ -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 diff --git a/tools/cli/Cargo.toml b/tools/cli/Cargo.toml index 3de8d27f..d0714798 100644 --- a/tools/cli/Cargo.toml +++ b/tools/cli/Cargo.toml @@ -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"