Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Arnold <[email protected]>
  • Loading branch information
mattarnoatibm committed Oct 9, 2023
1 parent 7c039f6 commit 9d5bcac
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion image-rs/src/signature/mechanism/simple/xrss.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,15 @@

use anyhow::*;
use async_trait::async_trait;

Check failure on line 7 in image-rs/src/signature/mechanism/simple/xrss.rs

View workflow job for this annotation

GitHub Actions / Check (nightly)

unused import: `async_trait::async_trait`

Check failure on line 7 in image-rs/src/signature/mechanism/simple/xrss.rs

View workflow job for this annotation

GitHub Actions / Check (stable)

unused import: `async_trait::async_trait`

Check failure on line 7 in image-rs/src/signature/mechanism/simple/xrss.rs

View workflow job for this annotation

GitHub Actions / Check (1.72.0)

unused import: `async_trait::async_trait`
use base64::Engine;
use oci_distribution::{secrets::RegistryAuth, Reference};
use reqwest::Client;
use serde::*;

use crate::signature::image::{digest::Digest, mechanism::simple};
use crate::signature::{
image::{digest::Digest, Image},
mechanism::simple,
};

#[derive(Debug, Default)]
pub struct RegistryClient {
Expand Down

0 comments on commit 9d5bcac

Please sign in to comment.