From f12fae4479c5b97ab37823d7aa58d9156e2fc3ad Mon Sep 17 00:00:00 2001 From: Katharina Date: Mon, 22 Apr 2019 02:02:08 +0200 Subject: Updating crates to 2018 edition (#9) * Updating main README * Updating lock file * Updating crate ecosystem to Rust 2018 edition --- lockchain-crypto/src/lib.rs | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) (limited to 'lockchain-crypto/src/lib.rs') diff --git a/lockchain-crypto/src/lib.rs b/lockchain-crypto/src/lib.rs index 8e64a4c..a454a46 100644 --- a/lockchain-crypto/src/lib.rs +++ b/lockchain-crypto/src/lib.rs @@ -1,20 +1,15 @@ //! A shim-layer crate for lockchain encryption -//! +//! //! To get going with encrypted lockchain files, just initialise an //! AesEngine type and start working with encrypted types provided by //! some backend. -#[macro_use] -extern crate serde_derive; -extern crate serde; -extern crate miscreant; - extern crate lockchain_core as lcc; mod databody; mod engine; mod keyfold; -pub use databody::DataBody; -pub use engine::AesEngine; -pub use keyfold::Keyfold; \ No newline at end of file +pub use crate::databody::DataBody; +pub use crate::engine::AesEngine; +pub use crate::keyfold::Keyfold; \ No newline at end of file -- cgit v1.2.3