aboutsummaryrefslogtreecommitdiff
path: root/lockchain-core/src/lib.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-04-09 18:06:14 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-04-09 18:06:14 +0200
commit95b91faf8e280757e9a2de3fec3c308c65de1d5d (patch)
tree86bbb4e2802c079deaf3c2ac35d24f6d5c75eb5b /lockchain-core/src/lib.rs
parent194b9fbf7ebc6cf054bc283cf5a6b2e0c62c9023 (diff)
Version that goes on crates.io
Diffstat (limited to 'lockchain-core/src/lib.rs')
-rw-r--r--lockchain-core/src/lib.rs14
1 files changed, 10 insertions, 4 deletions
diff --git a/lockchain-core/src/lib.rs b/lockchain-core/src/lib.rs
index e5bd9a4..f837b0b 100644
--- a/lockchain-core/src/lib.rs
+++ b/lockchain-core/src/lib.rs
@@ -1,4 +1,13 @@
//! 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 chrono;
extern crate serde;
@@ -13,7 +22,4 @@ extern crate rand;
pub mod version;
pub mod record;
pub mod vault;
-mod security;
-
-
-mod test;
+pub mod security;