chore: Format code
This commit is contained in:
parent
c46dfd4457
commit
27e5aaa777
2 changed files with 11 additions and 11 deletions
|
@ -2,20 +2,20 @@ use std::sync::Arc;
|
||||||
|
|
||||||
use base64ct::Encoding;
|
use base64ct::Encoding;
|
||||||
use ct::{
|
use ct::{
|
||||||
api::{responses::GetEntriesResponseEntry, CtApiClient}, merkle::{
|
api::{responses::GetEntriesResponseEntry, CtApiClient},
|
||||||
|
merkle::{
|
||||||
consts::EXTRA_DATA_BASE64_BUFFER_SIZE,
|
consts::EXTRA_DATA_BASE64_BUFFER_SIZE,
|
||||||
types::{MerkleLeafType, Version}
|
types::{MerkleLeafType, Version}
|
||||||
}, parsing::entry::{parse_entry_extra_data_precert, parse_entry_extra_data_x509}
|
},
|
||||||
|
parsing::entry::{parse_entry_extra_data_precert, parse_entry_extra_data_x509}
|
||||||
};
|
};
|
||||||
use tokio::task::JoinSet;
|
use tokio::task::JoinSet;
|
||||||
|
|
||||||
async fn fetch_entries() -> impl Iterator<Item = GetEntriesResponseEntry> {
|
async fn fetch_entries() -> impl Iterator<Item = GetEntriesResponseEntry> {
|
||||||
let client = Arc::new(
|
let client = Arc::new(CtApiClient::new_with_client(
|
||||||
CtApiClient::new_with_client(
|
|
||||||
"https://oak.ct.letsencrypt.org/2024h2/ct/v1/get-entries",
|
"https://oak.ct.letsencrypt.org/2024h2/ct/v1/get-entries",
|
||||||
Arc::new(reqwest::Client::new())
|
Arc::new(reqwest::Client::new())
|
||||||
)
|
));
|
||||||
);
|
|
||||||
let mut join_set: JoinSet<_> = JoinSet::new();
|
let mut join_set: JoinSet<_> = JoinSet::new();
|
||||||
for i in 0..12u64 {
|
for i in 0..12u64 {
|
||||||
let client = client.clone();
|
let client = client.clone();
|
||||||
|
|
Loading…
Reference in a new issue