Skip to content

Commit

Permalink
Clean up unused import warnings (#716)
Browse files Browse the repository at this point in the history
  • Loading branch information
divergentdave authored Jan 3, 2024
1 parent cfb6a43 commit d5de3dd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/src/collector_credentials.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ use crate::{CliResult, DetermineAccountId, Error, Output};
use base64::{engine::general_purpose::STANDARD, Engine};
use clap::Subcommand;
use divviup_client::{Decode, DivviupClient, HpkeConfig, Uuid};
use std::{borrow::Cow, env::current_dir, fs::File, io::Write, path::PathBuf};
use std::{borrow::Cow, path::PathBuf};
use trillium_tokio::tokio::fs;

#[cfg(feature = "hpke")]
use hpke_dispatch::{Aead, Kdf, Kem};
#[cfg(feature = "hpke")]
use std::{env::current_dir, fs::File, io::Write};

#[derive(Subcommand, Debug)]
pub enum CollectorCredentialAction {
Expand Down

0 comments on commit d5de3dd

Please sign in to comment.