From adec19548648ae1d1fe2fabf89e2f0c0dbc841a0 Mon Sep 17 00:00:00 2001 From: houseme Date: Mon, 15 Jun 2026 18:43:14 +0800 Subject: [PATCH] chore(scanner): enable pulsar telemetry feature (#3481) --- Cargo.lock | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 432a69d01..dcb1967e2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -8146,6 +8146,7 @@ dependencies = [ "tokio", "tokio-rustls", "tokio-util", + "tracing", "url", "uuid", "webpki-roots 1.0.7", diff --git a/Cargo.toml b/Cargo.toml index 1ee5007b3..a56d81fdd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -137,7 +137,7 @@ futures-core = "0.3.32" futures-lite = "2.6.1" futures-util = "0.3.32" pollster = "0.4.0" -pulsar = { version = "6.8.0", default-features = false, features = ["tokio-rustls-runtime"] } +pulsar = { version = "6.8.0", default-features = false, features = ["tokio-rustls-runtime","telemetry"] } lapin = { version = "4.10.0", default-features = false, features = ["tokio", "rustls", "rustls--aws_lc_rs"] } hyper = { version = "1.10.1", features = ["http2", "http1", "server"] } hyper-rustls = { version = "0.27.9", default-features = false, features = ["native-tokio", "http1", "tls12", "logging", "http2", "aws-lc-rs", "webpki-roots"] }