summaryrefslogtreecommitdiffstats
path: root/openpgp-ffi/src/packet/literal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp-ffi/src/packet/literal.rs')
-rw-r--r--openpgp-ffi/src/packet/literal.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/openpgp-ffi/src/packet/literal.rs b/openpgp-ffi/src/packet/literal.rs
index 1303a80c..61d32f41 100644
--- a/openpgp-ffi/src/packet/literal.rs
+++ b/openpgp-ffi/src/packet/literal.rs
@@ -13,9 +13,9 @@ extern crate sequoia_openpgp as openpgp;
use super::Packet;
-use MoveFromRaw;
-use MoveIntoRaw;
-use RefRaw;
+use crate::MoveFromRaw;
+use crate::MoveIntoRaw;
+use crate::RefRaw;
/// Holds a Literal Data packet.
///
@@ -29,7 +29,7 @@ use RefRaw;
/// Wraps [`sequoia-openpgp::packet::literal::Literal`].
///
/// [`sequoia-openpgp::packet::literal::Literal`]: ../../sequoia_openpgp/packet/literal/struct.Literal.html
-#[::ffi_wrapper_type(prefix = "pgp_",
+#[crate::ffi_wrapper_type(prefix = "pgp_",
derive = "Debug, Parse, Serialize")]
pub struct Literal(openpgp::packet::Literal);