From b8c61debb784db0eaae31352138fd9b447f9d151 Mon Sep 17 00:00:00 2001 From: Vigith Maurice Date: Mon, 23 Sep 2024 09:09:40 -0700 Subject: [PATCH] chore: fix numaflow-rs (#2081) Signed-off-by: Vigith Maurice --- rust/Cargo.lock | 10 +++++----- rust/monovertex/Cargo.toml | 2 +- rust/servesink/Cargo.toml | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index 624d5f14a8..81b0a5149b 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -1098,7 +1098,7 @@ dependencies = [ "tokio", "tokio-rustls 0.26.0", "tower-service", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", ] [[package]] @@ -1605,7 +1605,7 @@ dependencies = [ [[package]] name = "numaflow" version = "0.1.1" -source = "git+https://github.com/numaproj/numaflow-rs.git?branch=handshake#baecc88456f317b08bc869f82596e2b746cf798b" +source = "git+https://github.com/numaproj/numaflow-rs.git?branch=main#362f2b0a0705c34ce3693b8714885dfbae7843e8" dependencies = [ "chrono", "futures-util", @@ -2226,7 +2226,7 @@ dependencies = [ "wasm-bindgen", "wasm-bindgen-futures", "web-sys", - "webpki-roots 0.26.5", + "webpki-roots 0.26.6", "windows-registry", ] @@ -3408,9 +3408,9 @@ checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1" [[package]] name = "webpki-roots" -version = "0.26.5" +version = "0.26.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0bd24728e5af82c6c4ec1b66ac4844bdf8156257fccda846ec58b42cd0cdbe6a" +checksum = "841c67bff177718f1d4dfefde8d8f0e78f9b6589319ba88312f567fc5841a958" dependencies = [ "rustls-pki-types", ] diff --git a/rust/monovertex/Cargo.toml b/rust/monovertex/Cargo.toml index da75a4c8c8..ce973f79ac 100644 --- a/rust/monovertex/Cargo.toml +++ b/rust/monovertex/Cargo.toml @@ -38,7 +38,7 @@ log = "0.4.22" [dev-dependencies] tempfile = "3.11.0" -numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "handshake" } +numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "main" } [build-dependencies] tonic-build = "0.12.1" diff --git a/rust/servesink/Cargo.toml b/rust/servesink/Cargo.toml index 90a7c44696..7b037c7208 100644 --- a/rust/servesink/Cargo.toml +++ b/rust/servesink/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" [dependencies] tonic = "0.12.0" tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] } -numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "handshake" } +numaflow = { git = "https://github.com/numaproj/numaflow-rs.git", branch = "main" } tracing = "0.1.40" tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }