summaryrefslogtreecommitdiffstats
path: root/tool/src/commands/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tool/src/commands/mod.rs')
-rw-r--r--tool/src/commands/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tool/src/commands/mod.rs b/tool/src/commands/mod.rs
index 04e84987..6415e2cf 100644
--- a/tool/src/commands/mod.rs
+++ b/tool/src/commands/mod.rs
@@ -6,7 +6,7 @@ use std::io::{self, Write};
use std::time::SystemTime;
use rpassword;
-extern crate sequoia_openpgp as openpgp;
+use sequoia_openpgp as openpgp;
use sequoia_core::Context;
use crate::openpgp::types::{
CompressionAlgorithm,
@@ -29,7 +29,7 @@ use crate::openpgp::serialize::stream::{
},
};
use crate::openpgp::policy::Policy;
-extern crate sequoia_store as store;
+use sequoia_store as store;
pub mod decrypt;
pub use self::decrypt::decrypt;