summaryrefslogtreecommitdiffstats
path: root/openpgp/src/packet/literal.rs
diff options
context:
space:
mode:
Diffstat (limited to 'openpgp/src/packet/literal.rs')
-rw-r--r--openpgp/src/packet/literal.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/openpgp/src/packet/literal.rs b/openpgp/src/packet/literal.rs
index e892ea2b..4b3aa4fe 100644
--- a/openpgp/src/packet/literal.rs
+++ b/openpgp/src/packet/literal.rs
@@ -3,12 +3,12 @@ use std::cmp;
use time;
use quickcheck::{Arbitrary, Gen};
-use constants::DataFormat;
-use conversions::Time;
-use Error;
-use packet;
-use Packet;
-use Result;
+use crate::constants::DataFormat;
+use crate::conversions::Time;
+use crate::Error;
+use crate::packet;
+use crate::Packet;
+use crate::Result;
/// Holds a literal packet.
///
@@ -195,8 +195,8 @@ impl Arbitrary for Literal {
#[cfg(test)]
mod tests {
use super::*;
- use parse::Parse;
- use serialize::SerializeInto;
+ use crate::parse::Parse;
+ use crate::serialize::SerializeInto;
quickcheck! {
fn roundtrip(p: Literal) -> bool {