Skip to content

Commit 46603bd

Browse files
chore(deps): bump the patch-minor group across 1 directory with 6 updates
Bumps the patch-minor group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [tonic](https://github.com/hyperium/tonic) | `0.14.5` | `0.14.6` | | [tonic-prost](https://github.com/hyperium/tonic) | `0.14.5` | `0.14.6` | | [tokio](https://github.com/tokio-rs/tokio) | `1.52.1` | `1.52.2` | | [arrow-array](https://github.com/apache/arrow-rs) | `58.1.0` | `58.2.0` | | [tonic-prost-build](https://github.com/hyperium/tonic) | `0.14.5` | `0.14.6` | Updates `tonic` from 0.14.5 to 0.14.6 - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](grpc/grpc-rust@v0.14.5...tonic-v0.14.6) Updates `tonic-prost` from 0.14.5 to 0.14.6 - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](grpc/grpc-rust@v0.14.5...tonic-prost-v0.14.6) Updates `tokio` from 1.52.1 to 1.52.2 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.52.1...tokio-1.52.2) Updates `arrow-array` from 58.1.0 to 58.2.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.2.0) Updates `arrow-schema` from 58.1.0 to 58.2.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.2.0) Updates `tonic-prost-build` from 0.14.5 to 0.14.6 - [Release notes](https://github.com/hyperium/tonic/releases) - [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md) - [Commits](grpc/grpc-rust@v0.14.5...tonic-prost-build-v0.14.6) --- updated-dependencies: - dependency-name: arrow-array dependency-version: 58.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: arrow-schema dependency-version: 58.2.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: patch-minor - dependency-name: tokio dependency-version: 1.52.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor - dependency-name: tonic dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor - dependency-name: tonic-prost dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor - dependency-name: tonic-prost-build dependency-version: 0.14.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: patch-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 506b688 commit 46603bd

4 files changed

Lines changed: 26 additions & 26 deletions

File tree

Cargo.lock

Lines changed: 19 additions & 19 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: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,13 @@ live-tests = []
4343
tdbe = { version = "0.13.0", path = "../tdbe" }
4444

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

5151
# Async runtime
52-
tokio = { version = "1.52.1", features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "fs"] }
52+
tokio = { version = "1.52.2", features = ["rt-multi-thread", "macros", "time", "net", "io-util", "sync", "fs"] }
5353
tokio-stream = "0.1.18"
5454
tokio-rustls = "0.26.4"
5555
rustls = { version = "0.23.40", features = ["ring"] }
@@ -105,7 +105,7 @@ polars = { version = "0.53", optional = true, default-features = false }
105105
# arrow-array + arrow-schema cover RecordBatch construction for the
106106
# optional `frames` feature only. Kept optional so the default dep
107107
# graph stays slim — FLATFILES does not pull in arrow.
108-
arrow-array = { version = "58.1.0", optional = true }
108+
arrow-array = { version = "58.2.0", optional = true }
109109
arrow-schema = { version = "58.1.0", optional = true }
110110
# JSON encoder for the FLATFILES `Format::Jsonl` output. One serde_json
111111
# Value per row; `to_writer` emits compact form, then we append `\n`.
@@ -144,7 +144,7 @@ toml = "1.1.2"
144144

145145
[build-dependencies]
146146
# tonic 0.14 extracted build integration into tonic-prost-build
147-
tonic-prost-build = "=0.14.5"
147+
tonic-prost-build = "=0.14.6"
148148
prost-build = "=0.14.3"
149149
regex = "1.12.3"
150150
toml = "1.1.2"

ffi/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ testing-panic-boundary = []
3232
[dependencies]
3333
thetadatadx = { path = "../crates/thetadatadx" }
3434
tdbe = { version = "0.13.0", path = "../crates/tdbe" }
35-
tokio = { version = "1.52.1", features = ["rt-multi-thread"] }
35+
tokio = { version = "1.52.2", features = ["rt-multi-thread"] }
3636
# Used by the FPSS streaming callback silent-drop observability path
3737
# (see `tdx_fpss_dropped_events` / `tdx_unified_dropped_events`). Keep
3838
# pinned to the same major/minor as the parent crate so the target that

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.0", 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.2", features = ["rt-multi-thread", "macros"] }
2727
sonic-rs = "0.5.8"
2828
comfy-table = "7.2.2"

0 commit comments

Comments
 (0)