aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorKatharina Fey <kookie@spacekookie.de>2018-04-02 13:53:30 +0200
committerKatharina Fey <kookie@spacekookie.de>2018-04-02 13:53:30 +0200
commitc789005d19660f9f56b6eab7090a58758b5c7a07 (patch)
treeb2d5b8290486350c432bbaee7f6b72f982bbaf72 /src/lib.rs
parent5fe943efec2f7c0210d9b12767876ef3a251dfac (diff)
Refactoring utilities in security module. Definine basic library crate
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..81ec433
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,16 @@
+//! Core lockchain
+
+extern crate chrono;
+extern crate serde;
+extern crate serde_json;
+#[macro_use]
+extern crate serde_derive;
+extern crate base64;
+extern crate blake2;
+extern crate miscreant;
+extern crate rand;
+
+pub mod record;
+mod security;
+mod test;
+pub mod vault;