Skip to content

Commit

Permalink
chore: Upgrade Rust to 1.84 (numaproj#2349)
Browse files Browse the repository at this point in the history
Signed-off-by: Sreekanth <[email protected]>
Signed-off-by: jacque1ine <[email protected]>
  • Loading branch information
BulkBeing authored and jacque1ine committed Jan 23, 2025
1 parent 1c4fd9a commit bf09f6b
Show file tree
Hide file tree
Showing 10 changed files with 112 additions and 121 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ RUN chmod +x /bin/numaflow-rs
####################################################################################################
# Rust binary
####################################################################################################
FROM lukemathwalker/cargo-chef:latest-rust-1.82 AS chef
FROM lukemathwalker/cargo-chef:latest-rust-1.84 AS chef
ARG TARGETPLATFORM
WORKDIR /numaflow
RUN apt-get update && apt-get install -y protobuf-compiler
Expand Down
122 changes: 86 additions & 36 deletions rust/Cargo.lock

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

21 changes: 15 additions & 6 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,22 @@ numaflow-models = { path = "numaflow-models" }
backoff = { path = "backoff" }
numaflow-pb = { path = "numaflow-pb" }
numaflow-pulsar = { path = "extns/numaflow-pulsar" }
tokio = "1.41.1"
bytes = "1.7.1"
tracing = "0.1.40"
axum = "0.7.5"
tokio = "1.43.0"
bytes = "1.9.0"
tracing = "0.1.41"
axum = { version = "0.8.2", default-features = false, features = [
"http1",
"http2",
"json",
"matched-path",
"query",
"tracing",
"tokio",
] }
axum-server = { version = "0.7.1", features = ["tls-rustls"] }
serde = { version = "1.0.204", features = ["derive"] }
rustls = { version = "0.23.12", features = ["aws_lc_rs"] }
tower = "0.5.2"
serde = { version = "1.0.217", features = ["derive"] }
rustls = { version = "0.23.21", features = ["aws_lc_rs"] }
reqwest = { version = "0.12.12", default-features = false, features = [
"http2",
"rustls-tls",
Expand Down
Loading

0 comments on commit bf09f6b

Please sign in to comment.