summaryrefslogtreecommitdiffstats
path: root/ipc/examples/gpg-agent-decrypt.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/examples/gpg-agent-decrypt.rs')
-rw-r--r--ipc/examples/gpg-agent-decrypt.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/examples/gpg-agent-decrypt.rs b/ipc/examples/gpg-agent-decrypt.rs
index 2e423f12..8a783f7a 100644
--- a/ipc/examples/gpg-agent-decrypt.rs
+++ b/ipc/examples/gpg-agent-decrypt.rs
@@ -7,9 +7,9 @@ extern crate clap;
extern crate sequoia_openpgp as openpgp;
extern crate sequoia_ipc as ipc;
-use openpgp::crypto::SessionKey;
-use openpgp::constants::SymmetricAlgorithm;
-use openpgp::parse::{
+use crate::openpgp::crypto::SessionKey;
+use crate::openpgp::constants::SymmetricAlgorithm;
+use crate::openpgp::parse::{
Parse,
stream::{
DecryptionHelper,
@@ -20,7 +20,7 @@ use openpgp::parse::{
MessageLayer,
},
};
-use ipc::gnupg::{Context, KeyPair};
+use crate::ipc::gnupg::{Context, KeyPair};
fn main() {
let matches = clap::App::new("gpg-agent-decrypt")