1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
From 4bbb89667094999de2daf45498ed7a3e6c921042 Mon Sep 17 00:00:00 2001
From: KokaKiwi <kokakiwi+git@kokakiwi.net>
Date: Thu, 23 Jan 2025 16:22:02 +0100
Subject: [PATCH 2/2] Fix pulsar dependency
---
quickwit/Cargo.lock | 2 +-
quickwit/Cargo.toml | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/quickwit/Cargo.lock b/quickwit/Cargo.lock
index 6d48db37..2cbc7d1f 100644
--- a/quickwit/Cargo.lock
+++ b/quickwit/Cargo.lock
@@ -5367,7 +5367,7 @@ dependencies = [
[[package]]
name = "pulsar"
version = "5.0.2"
-source = "git+https://github.com/quickwit-oss/pulsar-rs.git?rev=f9eff04#f9eff04caf184906c6466fdde8b5bb0fd3c92659"
+source = "git+https://github.com/streamnative/pulsar-rs.git?rev=f9eff04#f9eff04caf184906c6466fdde8b5bb0fd3c92659"
dependencies = [
"async-trait",
"bit-vec",
diff --git a/quickwit/Cargo.toml b/quickwit/Cargo.toml
index 11d8531c..a71afec0 100644
--- a/quickwit/Cargo.toml
+++ b/quickwit/Cargo.toml
@@ -181,7 +181,7 @@ prost = { version = "0.11.6", default-features = false, features = [
] }
prost-build = "0.11.6"
prost-types = "0.11.6"
-pulsar = { git = "https://github.com/quickwit-oss/pulsar-rs.git", rev = "f9eff04", default-features = false, features = [
+pulsar = { git = "https://github.com/streamnative/pulsar-rs.git", rev = "f9eff04", default-features = false, features = [
"auth-oauth2",
"compression",
"tokio-runtime",
--
2.48.1
|