aboutsummaryrefslogtreecommitdiff
path: root/lockchain-crypto/src/databody.rs
diff options
context:
space:
mode:
Diffstat (limited to 'lockchain-crypto/src/databody.rs')
-rw-r--r--lockchain-crypto/src/databody.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/lockchain-crypto/src/databody.rs b/lockchain-crypto/src/databody.rs
index 568710c..2662f51 100644
--- a/lockchain-crypto/src/databody.rs
+++ b/lockchain-crypto/src/databody.rs
@@ -1,12 +1,13 @@
//! A clear-text representation of a record body in memory
-//!
+//!
//! This form is created by the `lockchain-crypto` crate and
//! should only exist in ephemeral form. All actions are first
//! encrypted before being written back to a persistence
//! medium.
-use lcc::traits::{AutoEncoder, Body};
-use lcc::Payload;
+use crate::lcc::traits::{AutoEncoder, Body};
+use crate::lcc::Payload;
+use serde::{Serialize, Deserialize};
use std::collections::BTreeMap;
#[derive(Serialize, Deserialize)]