aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/lib.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-05-07 02:31:44 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-05-07 02:31:44 +0200
commit6cebea193fb72f31f7a6eeb20eb53405367eb419 (patch)
tree62232d0d5f07f2c709c795b4d975512c953c88ed /lockchain-core/src/lib.rs
parentc5f7d995dfcc0b4225e767428960449fa09ac206 (diff)
Moving some stuff around and documenting the common lockchain-core code
Diffstat (limited to 'lockchain-core/src/lib.rs')
-rw-r--r--lockchain-core/src/lib.rs29
1 files changed, 0 insertions, 29 deletions
diff --git a/lockchain-core/src/lib.rs b/lockchain-core/src/lib.rs
index 76a08c5..e69de29 100644
--- a/lockchain-core/src/lib.rs
+++ b/lockchain-core/src/lib.rs
@@ -1,29 +0,0 @@
-//! Lockchain library core
-//!
-//! **Documentation TBD**
-//!
-//! In short: this crate handles handling of lockchain vaults. A vault
-//! is a collection of secret records that can be searched in an efficient
-//! manner, without ever having to keep the entire set in memory
-//! in unencrypted form.
-//!
-//! This is primarily used in the lockchain password manager.
-
-extern crate serde;
-extern crate serde_json;
-#[macro_use]
-extern crate serde_derive;
-extern crate miscreant;
-extern crate base64;
-extern crate blake2;
-extern crate chrono;
-extern crate rand;
-
-pub mod version;
-pub mod record;
-pub mod vault;
-pub mod security;
-
-// Export some commonly used types
-pub use vault::{Vault, ErrorType};
-pub use record::Payload; \ No newline at end of file