chore: reorder imports

This commit is contained in:
Anna 2023-08-31 13:49:21 -04:00
parent fae095df18
commit fae0ddf9d8
Signed by: anna
GPG Key ID: D0943384CD9F87D1
1 changed files with 5 additions and 5 deletions

View File

@ -14,19 +14,19 @@ use git2::Repository;
use gpgme::{Context, Protocol, SignMode};
use indicatif::ProgressStyle;
use keyring::Entry;
use openpgp::{
use rand::Rng;
use sequoia_openpgp::{
self as openpgp,
crypto::KeyPair,
packet::prelude::*,
parse::Parse,
policy::StandardPolicy,
serialize::{
Serialize,
stream::{Armorer, Message},
},
types::*,
};
use rand::Rng;
use sequoia_openpgp as openpgp;
use sequoia_openpgp::crypto::KeyPair;
use sequoia_openpgp::policy::StandardPolicy;
use serde::Deserialize;
use sha1::{Digest, Sha1};