Skip to content
Open
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
106 changes: 81 additions & 25 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ hyper = { version = "1.4.1", features = ["full"] }
hyper-util = { version = "=0.1.7", features = ["tokio", "server", "server-auto"] }
hyper_v014 = { package = "hyper", version = "0.14.26", features = ["runtime", "http1"] }
indexmap = { version = "2", features = ["serde"] }
lazy-regex = "=3.1.0"
lazy-regex = "=3.3.0"
libc = "0.2.126"
libz-sys = { version = "1.1.20", default-features = false }
log = "0.4.20"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.trex
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4

FROM rust:1.83.0-bookworm AS builder
FROM rust:1.85.1-bookworm AS builder

ARG TARGETPLATFORM
ARG ONNXRUNTIME_VERSION=1.17.0
Expand Down
2 changes: 2 additions & 0 deletions crates/pgt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,5 @@ serde_json = "1.0"
[features]
default = []
json_output = ["serde_json"]

[workspace]
1 change: 1 addition & 0 deletions ext/trex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ clap = { workspace = true, default-features = true, features = [
tracing-subscriber = { workspace = true, default-features = true, features = [
"env-filter",
] }
arrow-pg = { version = "0.*", default-features = false }
Copy link

Copilot AI Aug 3, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Using a wildcard version specification '0.*' is not recommended as it can lead to unexpected breaking changes. Consider specifying a more precise version range like '0.1' or '~0.1.0' to ensure better dependency stability.

Suggested change
arrow-pg = { version = "0.*", default-features = false }
arrow-pg = { version = "0.1", default-features = false }

Copilot uses AI. Check for mistakes.

[features]
unknown_types_to_bytes = []
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.82.0"
channel = "1.85.1"
components = ["rustfmt", "clippy"]
Loading