Skip to content
This repository was archived by the owner on May 27, 2025. It is now read-only.

Commit c496b2b

Browse files
committed
address CI issues
1 parent db33f91 commit c496b2b

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

Cargo.lock

Lines changed: 15 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ tracing = "0.1.41"
1414
clap = { version = "4", features = ["derive", "env"] }
1515
# Replace dotenv with dotenvy (maintained fork)
1616
dotenvy = "0.15.7"
17-
# Replace backoff with backoff-rs (maintained fork)
18-
backoff-rs = "0.1.0"
17+
backoff = "0.4.0"
1918
futures = "0.3.31"
2019
tracing-subscriber = { version = "0.3.19", features = ["json", "env-filter"] }
2120
tokio-util = "0.7.12"

src/subscriber.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::metrics::Metrics;
22
use axum::http::Uri;
3-
use backoff_rs::{backoff::Backoff, ExponentialBackoff};
3+
use backoff::{backoff::Backoff, ExponentialBackoff};
44
use futures::StreamExt;
55
use std::sync::Arc;
66
use std::time::Duration;

0 commit comments

Comments
 (0)