summaryrefslogtreecommitdiffstats
path: root/openpgp/src/lib.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-11-27 12:55:34 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-11-27 13:01:31 +0100
commitc64eb5733fa217f10e51f24dd1d6614703f0d828 (patch)
tree106a873a4e80161093cbd2f2a04aa25f9c4a6ddc /openpgp/src/lib.rs
parentf5f8a7b1b47d29c16083ba9d3dc5f88441376ea7 (diff)
openpgp: Rename ID to KeyHandle.
Diffstat (limited to 'openpgp/src/lib.rs')
-rw-r--r--openpgp/src/lib.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/openpgp/src/lib.rs b/openpgp/src/lib.rs
index 058af071..dfc04ab2 100644
--- a/openpgp/src/lib.rs
+++ b/openpgp/src/lib.rs
@@ -145,8 +145,8 @@ use crate::types::{
mod fingerprint;
mod keyid;
-mod id;
-pub use id::ID;
+mod keyhandle;
+pub use keyhandle::KeyHandle;
#[cfg(test)]
mod tests;