summaryrefslogtreecommitdiffstats
path: root/openpgp/src/crypto/mod.rs
diff options
context:
space:
mode:
authorJustus Winter <justus@sequoia-pgp.org>2019-12-03 13:58:24 +0100
committerJustus Winter <justus@sequoia-pgp.org>2019-12-03 13:58:24 +0100
commitbd153237fc6eb0a841f4d8b8d79f3383b7115b00 (patch)
tree07b7e8ad7b12d68da2b86729b68a219cff3cf6e0 /openpgp/src/crypto/mod.rs
parent88442e46a8f5639c4493713baeb5b90f7cf6a84b (diff)
openpgp: Rename openpgp::conversions to openpgp::fmt.
Diffstat (limited to 'openpgp/src/crypto/mod.rs')
-rw-r--r--openpgp/src/crypto/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/openpgp/src/crypto/mod.rs b/openpgp/src/crypto/mod.rs
index fd43481c..667f2d82 100644
--- a/openpgp/src/crypto/mod.rs
+++ b/openpgp/src/crypto/mod.rs
@@ -217,6 +217,6 @@ fn hash_file_test() {
hash.digest(&mut digest);
assert_eq!(*expected.get(&algo).unwrap(),
- &crate::conversions::to_hex(&digest[..], false));
+ &crate::fmt::to_hex(&digest[..], false));
}
}