Skip to content

Commit 5bc7db6

Browse files
committed
format imports + bump
1 parent 7b5256e commit 5bc7db6

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

apps/fortuna/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/fortuna/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fortuna"
3-
version = "7.5.1"
3+
version = "7.5.2"
44
edition = "2021"
55

66
[lib]

apps/fortuna/src/eth_utils/traced_client.rs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
use reqwest::Client;
2-
use std::time::Duration;
3-
use url::Url;
41
use {
52
crate::api::ChainId,
63
anyhow::Result,
@@ -14,8 +11,10 @@ use {
1411
metrics::{counter::Counter, family::Family, histogram::Histogram},
1512
registry::Registry,
1613
},
17-
std::sync::Arc,
14+
reqwest::Client,
15+
std::{sync::Arc, time::Duration},
1816
tokio::{sync::RwLock, time::Instant},
17+
url::Url,
1918
};
2019

2120
#[derive(Debug, Clone, PartialEq, Eq, Hash, EncodeLabelSet)]

0 commit comments

Comments
 (0)